CSLE.CLS_Type_Enum.CLS_Type_Enum C# (CSharp) Method

CLS_Type_Enum() public method

public CLS_Type_Enum ( Type type, string keyword = null ) : System
type System.Type
keyword string
return System
        public CLS_Type_Enum(Type type, string keyword = null)
        {
            this.type = type;
            this.keyword = keyword == null ? type.Name : keyword;
            this.sysType = type;
        }