NullableTypes Class Library

NullConvert.From Method

Converts the specified NullableBoolean value to an equivalent Boolean value using a conventional Boolean value to represent the Null value.

Overload List

Converts the specified NullableBoolean value to an equivalent Boolean value using a conventional Boolean value to represent the Null value.

public static bool From(NullableBoolean,bool);

Converts the specified NullableBoolean value to an equivalent String value using a conventional String value to represent the Null value.

public static string From(NullableBoolean,string);

Converts the specified NullableByte value to an equivalent Byte value using a conventional Byte value to represent the Null value.

public static byte From(NullableByte,byte);

Converts the specified NullableByte value to an equivalent String value using a conventional String value to represent the Null value.

public static string From(NullableByte,string,string);

Converts the specified NullableDateTime value to an equivalent DateTime value using a conventional DateTime value to represent the Null value.

public static DateTime From(NullableDateTime,DateTime);

Converts the specified NullableDateTime value to an equivalent String value using a conventional String value to represent the Null value.

public static string From(NullableDateTime,string,string);

Converts the specified NullableDecimal value to an equivalent Decimal value using a conventional Decimal value to represent the Null value.

public static decimal From(NullableDecimal,decimal);

Converts the specified NullableDecimal value to an equivalent String value using a conventional String value to represent the Null value.

public static string From(NullableDecimal,string,string);

Converts the specified NullableDouble value to an equivalent Double value using a conventional Double value to represent the Null value.

public static double From(NullableDouble,double);

Converts the specified NullableDouble value to an equivalent String value using a conventional String value to represent the Null value.

public static string From(NullableDouble,string,string);

Converts the specified NullableInt16 value to an equivalent Int16 value using a conventional Int16 value to represent the Null value.

public static short From(NullableInt16,short);

Converts the specified NullableInt16 value to an equivalent String value using a conventional String value to represent the Null value.

public static string From(NullableInt16,string,string);

Converts the specified NullableInt32 value to an equivalent Int32 value using a conventional Int32 value to represent the Null value.

public static int From(NullableInt32,int);

Converts the specified NullableInt32 value to an equivalent String value using a conventional String value to represent the Null value.

public static string From(NullableInt32,string,string);

Converts the specified NullableInt64 value to an equivalent Int64 value using a conventional Int64 value to represent the Null value.

public static long From(NullableInt64,long);

Converts the specified NullableInt64 value to an equivalent String value using a conventional String value to represent the Null value.

public static string From(NullableInt64,string,string);

Converts the specified NullableSingle value to an equivalent Single value using a conventional Single value to represent the Null value.

public static float From(NullableSingle,float);

Converts the specified NullableSingle value to an equivalent String value using a conventional String value to represent the Null value.

public static string From(NullableSingle,string,string);

Converts the specified NullableString value to an equivalent String value using a conventional String value to represent the Null value.

public static string From(NullableString,string);

See Also

NullConvert Class | NullableTypes.HelperFunctions Namespace