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