System.Data.SqlTypes.SqlInt16.ToSqlString C# (CSharp) Method

ToSqlString() public method

public ToSqlString ( ) : SqlString
return SqlString
        public SqlString ToSqlString()
        {
            return (SqlString)this;
        }

Usage Example

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