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));
 }