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