Parse() 공개 정적인 메소드

public static Parse ( string s ) : SqlSingle
s string
리턴 SqlSingle
예제 #1
0
 /**
  * Converts this SqlString structure to SqlSingle.
  * @return A SqlDouble structure whose Value equals the Value of this SqlString structure.
  */
 public SqlSingle ToSqlSingle()
 {
     return(SqlSingle.Parse(_value));
 }