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

ToSqlInt32() public method

public ToSqlInt32 ( ) : SqlInt32
return SqlInt32
        public SqlInt32 ToSqlInt32()
        {
            return this;
        }

Usage Example

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