MemberInfo.Name Property
Silverlight
Gets the name of the current member.
Namespace: System.Reflection
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 Use a Demo Method and a TextBlock Control. |
using System; using System.Reflection; class Example { public static int Demo(System.Windows.Controls.TextBlock outputBlock) { outputBlock.Text += "\nReflection.MemberInfo" + "\n"; // Get the Type and MemberInfo. Type MyType = Type.GetType("System.Empty"); MemberInfo[] Examplearray = MyType.GetMembers(); // Get and display the DeclaringType method. outputBlock.Text += String.Format("\nThere are {0} members in ", Examplearray.GetLength(0)); outputBlock.Text += String.Format("{0}.", MyType.FullName); foreach (MemberInfo Example in Examplearray) { outputBlock.Text += String.Format("\n" + Example.Name + " declaring type - " + Example.DeclaringType); } return 0; } }
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Note: