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

public static Parse ( string s ) : SqlInt64
s string
Результат SqlInt64
Пример #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));
 }