Parse() public static method

public static Parse ( string s ) : SqlDecimal
s string
return SqlDecimal
Example #1
0
 /**
  * Converts this SqlString structure to SqlDecimal.
  * @return A SqlDecimal structure whose Value equals the Value of this SqlString structure.
  */
 public SqlDecimal ToSqlDecimal()
 {
     return(SqlDecimal.Parse(_value));
 }