System.TypeExtensionMethods.GetFields C# (CSharp) Метод

GetFields() публичный статический Метод

public static GetFields ( this type ) : IEnumerable
type this
Результат IEnumerable
        public static IEnumerable<FieldInfo> GetFields(this Type type)
        {
            return type.GetRuntimeFields();

        }
#endif