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