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; }
public CLS_Type_Double() { function = new RegHelper_TypeFunction(typeof(double)); }
public CLS_Type_String() { function = new RegHelper_TypeFunction(typeof(string)); }
public CLS_Type_Float() { function = new RegHelper_TypeFunction(typeof(float)); }
public CLS_Type_Int() { function = new RegHelper_TypeFunction(typeof(int)); }