Parse() public static method

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