Catel.Data.CatelTypeInfo.CatelTypeInfo C# (CSharp) Метод

CatelTypeInfo() публичный Метод

Initializes a new instance of the CatelTypeInfo class.
The is null.
public CatelTypeInfo ( Type type ) : System
type System.Type The type.
Результат System
        public CatelTypeInfo(Type type)
        {
            Argument.IsNotNull("type", type);

            Type = type;

            RegisterProperties();
        }
        #endregion