Example #1
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;
 }
Example #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;
 }
Example #3
0
 public CLS_Type_Double()
 {
     function = new RegHelper_TypeFunction(typeof(double));
 }
Example #4
0
 public CLS_Type_Double()
 {
     function = new RegHelper_TypeFunction(typeof(double));
 }
Example #5
0
 public CLS_Type_String()
 {
     function = new RegHelper_TypeFunction(typeof(string));
 }
Example #6
0
 public CLS_Type_Float()
 {
     function = new RegHelper_TypeFunction(typeof(float));
 }
Example #7
0
 public CLS_Type_Int()
 {
     function = new RegHelper_TypeFunction(typeof(int));
 }
Example #8
0
 public CLS_Type_Float()
 {
     function = new RegHelper_TypeFunction(typeof(float));
 }
Example #9
0
 public CLS_Type_Int()
 {
     function = new RegHelper_TypeFunction(typeof(int));
 }
Example #10
0
 public CLS_Type_String()
 {
     function = new RegHelper_TypeFunction(typeof(string));
 }