Imports System.Reflection | |
Class ReflectionFoo | |
Private StringType As Type = GetType(String) | |
Private StringLengthProperty As PropertyInfo = StringType.GetProperty("Length") | |
Private StringGetEnumeratorMethod As MethodInfo = StringType.GetMethod("GetEnumerator") | |
Private StringEnumeratorType As Type = StringGetEnumeratorMethod.ReturnType | |
Sub New() | |
Console.WriteLine(StringType) | |
End Sub | |
End Class |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment