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

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