MemberInfo.Name Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the name of the current member.
Assembly: mscorlib (in mscorlib.dll)
Only the simple name of the member is returned, not the fully qualified name.
To get the Name property, get the class Type. From the Type, get the MemberInfo array. From a MemberInfo element of the array, obtain the Name property.
This example lists the Name and DeclaringType property of each member of the specified class.
Note: |
|---|
To run this example, see Building examples that have static TextBlock controls for Windows Phone 8. |
Imports System.Reflection Class Example Public Shared Function Demo(ByVal outputBlock As System.Windows.Controls.TextBlock) As Integer outputBlock.Text &= "Reflection.MemberInfo" & vbCrLf ' Get the Type and MemberInfo. Dim MyType As Type = Type.GetType("System.Empty") Dim Examplearray As MemberInfo() = MyType.GetMembers() ' Get and display the DeclaringType method. outputBlock.Text += String.Format("There are {0} members in {1}", Examplearray.GetLength(0), MyType.FullName) & vbCrLf Dim Example As MemberInfo For Each Example In Examplearray outputBlock.Text &= Example.Name & " declaring type - " & Example.DeclaringType.ToString() & vbCrLf Next Example Return 0 End Function End Class
Note: