示例#1
0
 public AnySDKParam(Dictionary <string, string> nValue)
 {
     this._intValue    = 0;
     this._floatValue  = 0f;
     this._boolValue   = false;
     this._strValue    = null;
     this._strMapValue = AnySDKUtil.dictionaryToString(nValue);
     this._type        = AnySDKParam.ParamType.kParamTypeStringMap;
 }
示例#2
0
 public AnySDKParam(bool nValue)
 {
     this._intValue    = 0;
     this._floatValue  = 0f;
     this._boolValue   = nValue;
     this._strValue    = null;
     this._strMapValue = null;
     this._type        = AnySDKParam.ParamType.kParamTypeBool;
 }
示例#3
0
 public AnySDKParam(string nValue)
 {
     this._intValue    = 0;
     this._floatValue  = 0f;
     this._boolValue   = false;
     this._strValue    = nValue;
     this._strMapValue = null;
     this._type        = AnySDKParam.ParamType.kParamTypeString;
 }
示例#4
0
 public AnySDKParam(float nValue)
 {
     this._intValue    = 0;
     this._floatValue  = nValue;
     this._boolValue   = false;
     this._strValue    = null;
     this._strMapValue = null;
     this._type        = AnySDKParam.ParamType.kParamTypeFloat;
 }