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

GetFields() public static méthode

public static GetFields ( this type ) : IEnumerable
type this
Résultat IEnumerable
        public static IEnumerable<FieldInfo> GetFields(this Type type)
        {
            return type.GetRuntimeFields();

        }
#endif