Parse() public static méthode

public static Parse ( string s ) : SqlInt64
s string
Résultat SqlInt64
Exemple #1
0
 /**
  * Converts this SqlString structure to SqlInt64.
  * @return A SqlInt64 structure whose Value equals the Value of this SqlString structure.
  */
 public SqlInt64 ToSqlInt64()
 {
     return(SqlInt64.Parse(_value));
 }