コード例 #1
0
ファイル: Utility.cs プロジェクト: bylu/baiyiWeb
 public static float StrToFloat(string strValue, float defValue)
 {
     return(TypeParse.StrToFloat(strValue, defValue));
 }
コード例 #2
0
ファイル: GameRequest.cs プロジェクト: bylu/baiyiWeb
 public static float GetQueryFloat(string strName, float defValue)
 {
     return(TypeParse.StrToFloat(HttpContext.Current.Request.QueryString[strName], defValue));
 }