System.TypeExtensionMethods.GetField C# (CSharp) Méthode

GetField() public static méthode

public static GetField ( this type, string name ) : FieldInfo
type this
name string
Résultat System.Reflection.FieldInfo
        public static FieldInfo GetField(this Type type, string name)
        {
            return type.GetRuntimeField(name);
        }
        public static IEnumerable<FieldInfo> GetFields(this Type type)