Parse() public static method

public static Parse ( string s ) : SqlSingle
s string
return SqlSingle
Ejemplo n.º 1
0
 /**
  * Converts this SqlString structure to SqlSingle.
  * @return A SqlDouble structure whose Value equals the Value of this SqlString structure.
  */
 public SqlSingle ToSqlSingle()
 {
     return(SqlSingle.Parse(_value));
 }