Parse() public static méthode

public static Parse ( string s ) : SqlMoney
s string
Résultat SqlMoney
Exemple #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));
 }