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

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