ToSqlInt16() public method

public ToSqlInt16 ( ) : SqlInt16
return SqlInt16
Esempio n. 1
0
 /// <summary>
 /// Converts the value of the specified SqlBoolean to its equivalent SqlInt16 representation.
 /// </summary>
 /// <param name="value">An SqlBoolean.</param>
 /// <returns>The equivalent SqlInt16.</returns>
 public static SqlInt16 ToSqlInt16(SqlBoolean value) { return value.ToSqlInt16(); }
Esempio n. 2
0
		// Sql Types
		//
		/// <summary>Converts the value from <c>SqlBoolean</c> to an equivalent <c>SqlInt16</c> value.</summary>
		public static SqlInt16 ToSqlInt16(SqlBoolean p) { return p.ToSqlInt16();                                                                    }