ToSqlSingle() public méthode

public ToSqlSingle ( ) : SqlSingle
Résultat SqlSingle
Exemple #1
0
 /// <summary>
 /// Converts the value of the specified SqlDecimal to its equivalent SqlSingle representation.
 /// </summary>
 /// <param name="value">An SqlDecimal.</param>
 /// <returns>The equivalent SqlSingle.</returns>
 public static SqlSingle ToSqlSingle(SqlDecimal value) { return value.ToSqlSingle(); }
		/// <summary>Converts the value from <c>SqlDecimal</c> to an equivalent <c>SqlSingle</c> value.</summary>
		public static SqlSingle ToSqlSingle(SqlDecimal p) { return p.ToSqlSingle();                                                                     }