Exemplo n.º 1
0
 public static float StrToFloat(string strValue, float defValue)
 {
     return(TypeParse.StrToFloat(strValue, defValue));
 }
Exemplo n.º 2
0
 public static float GetQueryFloat(string strName, float defValue)
 {
     return(TypeParse.StrToFloat(HttpContext.Current.Request.QueryString[strName], defValue));
 }