C# FieldInfo Name
Description
FieldInfo Name
Gets the name of the current member.
Syntax
FieldInfo.Name
has the following syntax.
public abstract string Name { get; }
Example
This example lists the Name and DeclaringType property of each member of the specified class.
// ww w . ja v a 2s .c om
using System;
using System.Reflection;
class Mymemberinfo
{
public static int Main()
{
Type MyType = Type.GetType("System.Empty");
MemberInfo[] Mymemberinfoarray = MyType.GetMembers();
Console.Write(Mymemberinfoarray.GetLength(0));
Console.Write(MyType.FullName);
foreach (MemberInfo Mymemberinfo in Mymemberinfoarray)
{
Console.Write("\n" + Mymemberinfo.Name + " declaring type - " + Mymemberinfo.DeclaringType);
}
return 0;
}
}
The code above generates the following result.