System.Data.SqlTypes.SqlSingle.ToSqlString C# (CSharp) Méthode

ToSqlString() public méthode

public ToSqlString ( ) : SqlString
Résultat SqlString
        public SqlString ToSqlString()
        {
            return (SqlString)this;
        }

Usage Example

Exemple #1
0
 /// <summary>
 /// Converts the value of the specified SqlSingle to its equivalent SqlString representation.
 /// </summary>
 /// <param name="value">An SqlSingle.</param>
 /// <returns>The SqlString equivalent of the SqlSingle.</returns>        
 public static SqlString ToSqlString(SqlSingle value) { return value.ToSqlString(); }
All Usage Examples Of System.Data.SqlTypes.SqlSingle::ToSqlString