System.TypeExtensionMethods.GetProperties C# (CSharp) Method

GetProperties() public static method

public static GetProperties ( this type ) : IEnumerable
type this
return IEnumerable
        public static IEnumerable<PropertyInfo> GetProperties(this Type type)
        {
            return type.GetRuntimeProperties();
        }
        public static FieldInfo GetField(this Type type, string name)