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

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

public static GetProperties ( this type ) : IEnumerable
type this
Результат IEnumerable
        public static IEnumerable<PropertyInfo> GetProperties(this Type type)
        {
            return type.GetRuntimeProperties();
        }
        public static FieldInfo GetField(this Type type, string name)