This documentation is archived and is not being maintained.
MemberInfo::Name Property
Visual Studio 2010
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.
using namespace System; using namespace System::Reflection; int main() { Console::WriteLine( "\nReflection.MemberInfo" ); // Get the Type and MemberInfo. Type^ MyType = Type::GetType( "System.Empty" ); array<MemberInfo^>^Mymemberinfoarray = MyType->GetMembers(); // Get and display the DeclaringType method. Console::Write( "\nThere are {0} members in ", Mymemberinfoarray->GetLength( 0 ) ); Console::Write( "{0}.", MyType->FullName ); System::Collections::IEnumerator^ enum0 = Mymemberinfoarray->GetEnumerator(); while ( enum0->MoveNext() ) { MemberInfo^ Mymemberinfo = safe_cast<MemberInfo^>(enum0->Current); Console::Write( "\n{0} declaring type - {1}", Mymemberinfo->Name, Mymemberinfo->DeclaringType ); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: