상속: ICLS_TypeFunction
예제 #1
0
 public RegHelper_Type(Type type)
 {
     function   = new RegHelper_TypeFunction(type);
     keyword    = type.Name;
     this.type  = type;
     this._type = type;
 }
예제 #2
0
 public RegHelper_Type(Type type, string setkeyword = null)
 {
     function = new RegHelper_TypeFunction(type);
     if (setkeyword != null)
     {
         keyword = setkeyword;
     }
     else
     {
         keyword = type.Name;
     }
     this.type  = type;
     this._type = type;
 }
예제 #3
0
 protected RegHelper_Type(Type type, string setkeyword, bool dele)
 {
     function = new RegHelper_TypeFunction(type);
     if (setkeyword != null)
     {
         keyword = setkeyword.Replace(" ", "");
     }
     else
     {
         keyword = type.Name;
     }
     this.type  = type;
     this._type = type;
 }
예제 #4
0
 public RegHelper_Type(Type type, string setkeyword = null)
 {
     function = new RegHelper_TypeFunction(type);
     if (setkeyword != null)
     {
         keyword = setkeyword.Replace(" ", "");
     }
     else
     {
         keyword = type.Name;
     }
     this.type = type;
     this._type = type;
 }
예제 #5
0
 public RegHelper_Type(Type type, string setkeyword = null)
 {
     if (type.IsSubclassOf(typeof(Delegate)))
     {
         throw new Exception("你想注册的Type是一个Delegate,需要用特别的注册方法");
     }
     function = new RegHelper_TypeFunction(type);
     if (setkeyword != null)
     {
         keyword = setkeyword.Replace(" ", "");
     }
     else
     {
         keyword = type.Name;
     }
     this.type  = type;
     this._type = type;
 }
예제 #6
0
 public CLS_Type_String()
 {
     function = new RegHelper_TypeFunction(typeof(string));
 }
예제 #7
0
 public CLS_Type_String()
 {
     function = new RegHelper_TypeFunction(typeof(string));
 }
예제 #8
0
 public CLS_Type_Float()
 {
     function = new RegHelper_TypeFunction(typeof(float));
 }
예제 #9
0
 public RegHelper_Type(Type type, string setkeyword = null)
 {
     if(type.IsSubclassOf(typeof(Delegate)))
     {
         throw new Exception("你想注册的Type是一个Delegate,需要用特别的注册方法");
     }
     function = new RegHelper_TypeFunction(type);
     if (setkeyword != null)
     {
         keyword = setkeyword.Replace(" ", "");
     }
     else
     {
         keyword = type.Name;
     }
     this.type = type;
     this._type = type;
 }
예제 #10
0
 public RegHelper_Type(Type type)
 {
     function = new RegHelper_TypeFunction(type);
     keyword = type.Name;
     this.type = type;
     this._type = type;
 }
예제 #11
0
 public CLS_Type_UInt()
 {
     function = new RegHelper_TypeFunction(typeof(uint));
 }
예제 #12
0
        public CLS_Type_Int()
        {

            function = new RegHelper_TypeFunction(typeof(int));
        }
예제 #13
0
 public CLS_Type_Float()
 {
     function = new RegHelper_TypeFunction(typeof(float));
 }
예제 #14
0
 public CLS_Type_Double()
 {
     function = new RegHelper_TypeFunction(typeof(double));
 }
예제 #15
0
 public CLS_Type_Double()
 {
             
     function = new RegHelper_TypeFunction(typeof(double));
 }