Parse() публичный статический Метод

public static Parse ( string s ) : SqlMoney
s string
Результат SqlMoney
Пример #1
0
 /**
  * Converts this SqlString instance to SqlString.
  * @return A SqlMoney instance whose Value equals the Value of this SqlString instance.
  */
 public SqlMoney ToSqlMoney()
 {
     return(SqlMoney.Parse(_value));
 }