Catel.Data.CatelTypeInfo.CatelTypeInfo C# (CSharp) Method

CatelTypeInfo() public method

Initializes a new instance of the CatelTypeInfo class.
The is null.
public CatelTypeInfo ( Type type ) : System
type System.Type The type.
return System
        public CatelTypeInfo(Type type)
        {
            Argument.IsNotNull("type", type);

            Type = type;

            RegisterProperties();
        }
        #endregion