static | ChangeType(object, Type) : object
Returns an object of the specified type and whose value is equivalent to the specified object.
|
static | ChangeType(object, TypeCode) : object
Returns an object of the specified type whose value is equivalent to the specified object.
|
static | ChangeType(object, Type, IFormatProvider) : object
Returns an object of the specified type whose value is equivalent to the specified object. A parameter supplies culture-specific formatting information.
|
static | ChangeType(object, TypeCode, IFormatProvider) : object
Returns an object of the specified type whose value is equivalent to the specified object. A parameter supplies culture-specific formatting information.
|
static | FromBase64CharArray(char[], int, int) : byte[]
Converts a subset of a Unicode character array, which encodes binary data as base-64 digits, to an equivalent 8-bit unsigned integer array. Parameters specify the subset in the input array and the number of elements to convert.
|
static | FromBase64String(string) : byte[]
Converts the specified string, which encodes binary data as base-64 digits, to an equivalent 8-bit unsigned integer array.
|
static | GetTypeCode(object) : TypeCode
Returns the TypeCode for the specified object.
|
static | IsDBNull(object) : bool
Returns an indication whether the specified object is of type DBNull.
|
static | ToBase64CharArray(byte[], int, int, char[], int) : int
Converts a subset of an 8-bit unsigned integer array to an equivalent subset of a Unicode character array encoded with base-64 digits. Parameters specify the subsets as offsets in the input and output arrays, and the number of elements in the input array to convert.
|
static | ToBase64CharArray(byte[], int, int, char[], int, Base64FormattingOptions) : int
Converts a subset of an 8-bit unsigned integer array to an equivalent subset of a Unicode character array encoded with base-64 digits. Parameters specify the subsets as offsets in the input and output arrays, the number of elements in the input array to convert, and whether line breaks are inserted in the output array.
|
static | ToBase64String(byte[]) : string
Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits.
|
static | ToBase64String(byte[], Base64FormattingOptions) : string
Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits. A parameter specifies whether to insert line breaks in the return value.
|
static | ToBase64String(byte[], int, int) : string
Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits. Parameters specify the subset as an offset in the input array, and the number of elements in the array to convert.
|
static | ToBase64String(byte[], int, int, Base64FormattingOptions) : string
Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits. Parameters specify the subset as an offset in the input array, the number of elements in the array to convert, and whether to insert line breaks in the return value.
|
static | ToBoolean(bool) : bool
Returns the specified Boolean value; no actual conversion is performed.
|
static | ToBoolean(byte) : bool
Converts the value of the specified 8-bit unsigned integer to an equivalent Boolean value.
|
static | ToBoolean(char) : bool
Calling this method always throws InvalidCastException.
|
static | ToBoolean(DateTime) : bool
Calling this method always throws InvalidCastException.
|
static | ToBoolean(decimal) : bool
Converts the value of the specified decimal number to an equivalent Boolean value.
|
static | ToBoolean(double) : bool
Converts the value of the specified double-precision floating-point number to an equivalent Boolean value.
|
static | ToBoolean(short) : bool
Converts the value of the specified 16-bit signed integer to an equivalent Boolean value.
|
static | ToBoolean(int) : bool
Converts the value of the specified 32-bit signed integer to an equivalent Boolean value.
|
static | ToBoolean(long) : bool
Converts the value of the specified 64-bit signed integer to an equivalent Boolean value.
|
static | ToBoolean(object) : bool
Converts the value of a specified object to an equivalent Boolean value.
|
static | ToBoolean(sbyte) : bool
Converts the value of the specified 8-bit signed integer to an equivalent Boolean value.
|
static | ToBoolean(float) : bool
Converts the value of the specified single-precision floating-point number to an equivalent Boolean value.
|
static | ToBoolean(string) : bool
Converts the specified string representation of a logical value to its Boolean equivalent.
|
static | ToBoolean(ushort) : bool
Converts the value of the specified 16-bit unsigned integer to an equivalent Boolean value.
|
static | ToBoolean(uint) : bool
Converts the value of the specified 32-bit unsigned integer to an equivalent Boolean value.
|
static | ToBoolean(ulong) : bool
Converts the value of the specified 64-bit unsigned integer to an equivalent Boolean value.
|
static | ToBoolean(object, IFormatProvider) : bool
Converts the value of the specified object to an equivalent Boolean value, using the specified culture-specific formatting information.
|
static | ToBoolean(string, IFormatProvider) : bool
Converts the specified string representation of a logical value to its Boolean equivalent, using the specified culture-specific formatting information.
|
static | ToByte(bool) : byte
Converts the specified Boolean value to the equivalent 8-bit unsigned integer.
|
static | ToByte(byte) : byte
Returns the specified 8-bit unsigned integer; no actual conversion is performed.
|
static | ToByte(char) : byte
Converts the value of the specified Unicode character to the equivalent 8-bit unsigned integer.
|
static | ToByte(DateTime) : byte
Calling this method always throws InvalidCastException.
|
static | ToByte(decimal) : byte
Converts the value of the specified decimal number to an equivalent 8-bit unsigned integer.
|
static | ToByte(double) : byte
Converts the value of the specified double-precision floating-point number to an equivalent 8-bit unsigned integer.
|
static | ToByte(short) : byte
Converts the value of the specified 16-bit signed integer to an equivalent 8-bit unsigned integer.
|
static | ToByte(int) : byte
Converts the value of the specified 32-bit signed integer to an equivalent 8-bit unsigned integer.
|
static | ToByte(long) : byte
Converts the value of the specified 64-bit signed integer to an equivalent 8-bit unsigned integer.
|
static | ToByte(object) : byte
Converts the value of the specified object to an 8-bit unsigned integer.
|
static | ToByte(sbyte) : byte
Converts the value of the specified 8-bit signed integer to an equivalent 8-bit unsigned integer.
|
static | ToByte(float) : byte
Converts the value of the specified single-precision floating-point number to an equivalent 8-bit unsigned integer.
|
static | ToByte(string) : byte
Converts the specified string representation of a number to an equivalent 8-bit unsigned integer.
|
static | ToByte(ushort) : byte
Converts the value of the specified 16-bit unsigned integer to an equivalent 8-bit unsigned integer.
|
static | ToByte(uint) : byte
Converts the value of the specified 32-bit unsigned integer to an equivalent 8-bit unsigned integer.
|
static | ToByte(ulong) : byte
Converts the value of the specified 64-bit unsigned integer to an equivalent 8-bit unsigned integer.
|
static | ToByte(object, IFormatProvider) : byte
Converts the value of the specified object to an 8-bit unsigned integer, using the specified culture-specific formatting information.
|
static | ToByte(string, IFormatProvider) : byte
Converts the specified string representation of a number to an equivalent 8-bit unsigned integer, using specified culture-specific formatting information.
|
static | ToByte(string, int) : byte
Converts the string representation of a number in a specified base to an equivalent 8-bit unsigned integer.
|
static | ToChar(bool) : char
Calling this method always throws InvalidCastException.
|
static | ToChar(byte) : char
Converts the value of the specified 8-bit unsigned integer to its equivalent Unicode character.
|
static | ToChar(char) : char
Returns the specified Unicode character value; no actual conversion is performed.
|
static | ToChar(DateTime) : char
Calling this method always throws InvalidCastException.
|
static | ToChar(decimal) : char
Calling this method always throws InvalidCastException.
|
static | ToChar(double) : char
Calling this method always throws InvalidCastException.
|
static | ToChar(short) : char
Converts the value of the specified 16-bit signed integer to its equivalent Unicode character.
|
static | ToChar(int) : char
Converts the value of the specified 32-bit signed integer to its equivalent Unicode character.
|
static | ToChar(long) : char
Converts the value of the specified 64-bit signed integer to its equivalent Unicode character.
|
static | ToChar(object) : char
Converts the value of the specified object to a Unicode character.
|
static | ToChar(sbyte) : char
Converts the value of the specified 8-bit signed integer to its equivalent Unicode character.
|
static | ToChar(float) : char
Calling this method always throws InvalidCastException.
|
static | ToChar(string) : char
Converts the first character of a specified string to a Unicode character.
|
static | ToChar(ushort) : char
Converts the value of the specified 16-bit unsigned integer to its equivalent Unicode character.
|
static | ToChar(uint) : char
Converts the value of the specified 32-bit unsigned integer to its equivalent Unicode character.
|
static | ToChar(ulong) : char
Converts the value of the specified 64-bit unsigned integer to its equivalent Unicode character.
|
static | ToChar(object, IFormatProvider) : char
Converts the value of the specified object to its equivalent Unicode character, using the specified culture-specific formatting information.
|
static | ToChar(string, IFormatProvider) : char
Converts the first character of a specified string to a Unicode character, using specified culture-specific formatting information.
|
static | ToDateTime(bool) : DateTime
Calling this method always throws InvalidCastException.
|
static | ToDateTime(byte) : DateTime
Calling this method always throws InvalidCastException.
|
static | ToDateTime(char) : DateTime
Calling this method always throws InvalidCastException.
|
static | ToDateTime(DateTime) : DateTime
Returns the specified DateTime object; no actual conversion is performed.
|
static | ToDateTime(decimal) : DateTime
Calling this method always throws InvalidCastException.
|
static | ToDateTime(double) : DateTime
Calling this method always throws InvalidCastException.
|
static | ToDateTime(short) : DateTime
Calling this method always throws InvalidCastException.
|
static | ToDateTime(int) : DateTime
Calling this method always throws InvalidCastException.
|
static | ToDateTime(long) : DateTime
Calling this method always throws InvalidCastException.
|
static | ToDateTime(object) : DateTime
Converts the value of the specified object to a DateTime object.
|
static | ToDateTime(sbyte) : DateTime
Calling this method always throws InvalidCastException.
|
static | ToDateTime(float) : DateTime
Calling this method always throws InvalidCastException.
|
static | ToDateTime(string) : DateTime
Converts the specified string representation of a date and time to an equivalent date and time value.
|
static | ToDateTime(ushort) : DateTime
Calling this method always throws InvalidCastException.
|
static | ToDateTime(uint) : DateTime
Calling this method always throws InvalidCastException.
|
static | ToDateTime(ulong) : DateTime
Calling this method always throws InvalidCastException.
|
static | ToDateTime(object, IFormatProvider) : DateTime
Converts the value of the specified object to a DateTime object, using the specified culture-specific formatting information.
|
static | ToDateTime(string, IFormatProvider) : DateTime
Converts the specified string representation of a number to an equivalent date and time, using the specified culture-specific formatting information.
|
static | ToDecimal(bool) : decimal
Converts the specified Boolean value to the equivalent decimal number.
|
static | ToDecimal(byte) : decimal
Converts the value of the specified 8-bit unsigned integer to the equivalent decimal number.
|
static | ToDecimal(char) : decimal
Calling this method always throws InvalidCastException.
|
static | ToDecimal(DateTime) : decimal
Calling this method always throws InvalidCastException.
|
static | ToDecimal(decimal) : decimal
Returns the specified decimal number; no actual conversion is performed.
|
static | ToDecimal(double) : decimal
Converts the value of the specified double-precision floating-point number to an equivalent decimal number.
|
static | ToDecimal(short) : decimal
Converts the value of the specified 16-bit signed integer to an equivalent decimal number.
|
static | ToDecimal(int) : decimal
Converts the value of the specified 32-bit signed integer to an equivalent decimal number.
|
static | ToDecimal(long) : decimal
Converts the value of the specified 64-bit signed integer to an equivalent decimal number.
|
static | ToDecimal(object) : decimal
Converts the value of the specified object to an equivalent decimal number.
|
static | ToDecimal(sbyte) : decimal
Converts the value of the specified 8-bit signed integer to the equivalent decimal number.
|
static | ToDecimal(float) : decimal
Converts the value of the specified single-precision floating-point number to the equivalent decimal number.
|
static | ToDecimal(string) : decimal
Converts the specified string representation of a number to an equivalent decimal number.
|
static | ToDecimal(ushort) : decimal
Converts the value of the specified 16-bit unsigned integer to an equivalent decimal number.
|
static | ToDecimal(uint) : decimal
Converts the value of the specified 32-bit unsigned integer to an equivalent decimal number.
|
static | ToDecimal(ulong) : decimal
Converts the value of the specified 64-bit unsigned integer to an equivalent decimal number.
|
static | ToDecimal(object, IFormatProvider) : decimal
Converts the value of the specified object to an equivalent decimal number, using the specified culture-specific formatting information.
|
static | ToDecimal(string, IFormatProvider) : decimal
Converts the specified string representation of a number to an equivalent decimal number, using the specified culture-specific formatting information.
|
static | ToDouble(bool) : double
Converts the specified Boolean value to the equivalent double-precision floating-point number.
|
static | ToDouble(byte) : double
Converts the value of the specified 8-bit unsigned integer to the equivalent double-precision floating-point number.
|
static | ToDouble(char) : double
Calling this method always throws InvalidCastException.
|
static | ToDouble(DateTime) : double
Calling this method always throws InvalidCastException.
|
static | ToDouble(decimal) : double
Converts the value of the specified decimal number to an equivalent double-precision floating-point number.
|
static | ToDouble(double) : double
Returns the specified double-precision floating-point number; no actual conversion is performed.
|
static | ToDouble(short) : double
Converts the value of the specified 16-bit signed integer to an equivalent double-precision floating-point number.
|
static | ToDouble(int) : double
Converts the value of the specified 32-bit signed integer to an equivalent double-precision floating-point number.
|
static | ToDouble(long) : double
Converts the value of the specified 64-bit signed integer to an equivalent double-precision floating-point number.
|
static | ToDouble(object) : double
Converts the value of the specified object to a double-precision floating-point number.
|
static | ToDouble(sbyte) : double
Converts the value of the specified 8-bit signed integer to the equivalent double-precision floating-point number.
|
static | ToDouble(float) : double
Converts the value of the specified single-precision floating-point number to an equivalent double-precision floating-point number.
|
static | ToDouble(string) : double
Converts the specified string representation of a number to an equivalent double-precision floating-point number.
|
static | ToDouble(ushort) : double
Converts the value of the specified 16-bit unsigned integer to the equivalent double-precision floating-point number.
|
static | ToDouble(uint) : double
Converts the value of the specified 32-bit unsigned integer to an equivalent double-precision floating-point number.
|
static | ToDouble(ulong) : double
Converts the value of the specified 64-bit unsigned integer to an equivalent double-precision floating-point number.
|
static | ToDouble(object, IFormatProvider) : double
Converts the value of the specified object to an double-precision floating-point number, using the specified culture-specific formatting information.
|
static | ToDouble(string, IFormatProvider) : double
Converts the specified string representation of a number to an equivalent double-precision floating-point number, using the specified culture-specific formatting information.
|
static | ToInt16(bool) : short
Converts the specified Boolean value to the equivalent 16-bit signed integer.
|
static | ToInt16(byte) : short
Converts the value of the specified 8-bit unsigned integer to the equivalent 16-bit signed integer.
|
static | ToInt16(char) : short
Converts the value of the specified Unicode character to the equivalent 16-bit signed integer.
|
static | ToInt16(DateTime) : short
Calling this method always throws InvalidCastException.
|
static | ToInt16(decimal) : short
Converts the value of the specified decimal number to an equivalent 16-bit signed integer.
|
static | ToInt16(double) : short
Converts the value of the specified double-precision floating-point number to an equivalent 16-bit signed integer.
|
static | ToInt16(short) : short
Returns the specified 16-bit signed integer; no actual conversion is performed.
|
static | ToInt16(int) : short
Converts the value of the specified 32-bit signed integer to an equivalent 16-bit signed integer.
|
static | ToInt16(long) : short
Converts the value of the specified 64-bit signed integer to an equivalent 16-bit signed integer.
|
static | ToInt16(object) : short
Converts the value of the specified object to a 16-bit signed integer.
|
static | ToInt16(sbyte) : short
Converts the value of the specified 8-bit signed integer to the equivalent 16-bit signed integer.
|
static | ToInt16(float) : short
Converts the value of the specified single-precision floating-point number to an equivalent 16-bit signed integer.
|
static | ToInt16(string) : short
Converts the specified string representation of a number to an equivalent 16-bit signed integer.
|
static | ToInt16(ushort) : short
Converts the value of the specified 16-bit unsigned integer to the equivalent 16-bit signed integer.
|
static | ToInt16(uint) : short
Converts the value of the specified 32-bit unsigned integer to an equivalent 16-bit signed integer.
|
static | ToInt16(ulong) : short
Converts the value of the specified 64-bit unsigned integer to an equivalent 16-bit signed integer.
|
static | ToInt16(object, IFormatProvider) : short
Converts the value of the specified object to a 16-bit signed integer, using the specified culture-specific formatting information.
|
static | ToInt16(string, IFormatProvider) : short
Converts the specified string representation of a number to an equivalent 16-bit signed integer, using the specified culture-specific formatting information.
|
static | ToInt16(string, int) : short
Converts the string representation of a number in a specified base to an equivalent 16-bit signed integer.
|
static | ToInt32(bool) : int
Converts the specified Boolean value to the equivalent 32-bit signed integer.
|
static | ToInt32(byte) : int
Converts the value of the specified 8-bit unsigned integer to the equivalent 32-bit signed integer.
|
static | ToInt32(char) : int
Converts the value of the specified Unicode character to the equivalent 32-bit signed integer.
|
static | ToInt32(DateTime) : int
Calling this method always throws InvalidCastException.
|
static | ToInt32(decimal) : int
Converts the value of the specified decimal number to an equivalent 32-bit signed integer.
|
static | ToInt32(double) : int
Converts the value of the specified double-precision floating-point number to an equivalent 32-bit signed integer.
|
static | ToInt32(short) : int
Converts the value of the specified 16-bit signed integer to an equivalent 32-bit signed integer.
|
static | ToInt32(int) : int
Returns the specified 32-bit signed integer; no actual conversion is performed.
|
static | ToInt32(long) : int
Converts the value of the specified 64-bit signed integer to an equivalent 32-bit signed integer.
|
static | ToInt32(object) : int
Converts the value of the specified object to a 32-bit signed integer.
|
static | ToInt32(sbyte) : int
Converts the value of the specified 8-bit signed integer to the equivalent 32-bit signed integer.
|
static | ToInt32(float) : int
Converts the value of the specified single-precision floating-point number to an equivalent 32-bit signed integer.
|
static | ToInt32(string) : int
Converts the specified string representation of a number to an equivalent 32-bit signed integer.
|
static | ToInt32(ushort) : int
Converts the value of the specified 16-bit unsigned integer to the equivalent 32-bit signed integer.
|
static | ToInt32(uint) : int
Converts the value of the specified 32-bit unsigned integer to an equivalent 32-bit signed integer.
|
static | ToInt32(ulong) : int
Converts the value of the specified 64-bit unsigned integer to an equivalent 32-bit signed integer.
|
static | ToInt32(object, IFormatProvider) : int
Converts the value of the specified object to a 32-bit signed integer, using the specified culture-specific formatting information.
|
static | ToInt32(string, IFormatProvider) : int
Converts the specified string representation of a number to an equivalent 32-bit signed integer, using the specified culture-specific formatting information.
|
static | ToInt32(string, int) : int
Converts the string representation of a number in a specified base to an equivalent 32-bit signed integer.
|
static | ToInt64(bool) : long
Converts the specified Boolean value to the equivalent 64-bit signed integer.
|
static | ToInt64(byte) : long
Converts the value of the specified 8-bit unsigned integer to the equivalent 64-bit signed integer.
|
static | ToInt64(char) : long
Converts the value of the specified Unicode character to the equivalent 64-bit signed integer.
|
static | ToInt64(DateTime) : long
Calling this method always throws InvalidCastException.
|
static | ToInt64(decimal) : long
Converts the value of the specified decimal number to an equivalent 64-bit signed integer.
|
static | ToInt64(double) : long
Converts the value of the specified double-precision floating-point number to an equivalent 64-bit signed integer.
|
static | ToInt64(short) : long
Converts the value of the specified 16-bit signed integer to an equivalent 64-bit signed integer.
|
static | ToInt64(int) : long
Converts the value of the specified 32-bit signed integer to an equivalent 64-bit signed integer.
|
static | ToInt64(long) : long
Returns the specified 64-bit signed integer; no actual conversion is performed.
|
static | ToInt64(object) : long
Converts the value of the specified object to a 64-bit signed integer.
|
static | ToInt64(sbyte) : long
Converts the value of the specified 8-bit signed integer to the equivalent 64-bit signed integer.
|
static | ToInt64(float) : long
Converts the value of the specified single-precision floating-point number to an equivalent 64-bit signed integer.
|
static | ToInt64(string) : long
Converts the specified string representation of a number to an equivalent 64-bit signed integer.
|
static | ToInt64(ushort) : long
Converts the value of the specified 16-bit unsigned integer to the equivalent 64-bit signed integer.
|
static | ToInt64(uint) : long
Converts the value of the specified 32-bit unsigned integer to an equivalent 64-bit signed integer.
|
static | ToInt64(ulong) : long
Converts the value of the specified 64-bit unsigned integer to an equivalent 64-bit signed integer.
|
static | ToInt64(object, IFormatProvider) : long
Converts the value of the specified object to a 64-bit signed integer, using the specified culture-specific formatting information.
|
static | ToInt64(string, IFormatProvider) : long
Converts the specified string representation of a number to an equivalent 64-bit signed integer, using the specified culture-specific formatting information.
|
static | ToInt64(string, int) : long
Converts the string representation of a number in a specified base to an equivalent 64-bit signed integer.
|
static | ToSByte(bool) : sbyte
Converts the specified Boolean value to the equivalent 8-bit signed integer.
|
static | ToSByte(byte) : sbyte
Converts the value of the specified 8-bit unsigned integer to the equivalent 8-bit signed integer.
|
static | ToSByte(char) : sbyte
Converts the value of the specified Unicode character to the equivalent 8-bit signed integer.
|
static | ToSByte(DateTime) : sbyte
Calling this method always throws InvalidCastException.
|
static | ToSByte(decimal) : sbyte
Converts the value of the specified decimal number to an equivalent 8-bit signed integer.
|
static | ToSByte(double) : sbyte
Converts the value of the specified double-precision floating-point number to an equivalent 8-bit signed integer.
|
static | ToSByte(short) : sbyte
Converts the value of the specified 16-bit signed integer to the equivalent 8-bit signed integer.
|
static | ToSByte(int) : sbyte
Converts the value of the specified 32-bit signed integer to an equivalent 8-bit signed integer.
|
static | ToSByte(long) : sbyte
Converts the value of the specified 64-bit signed integer to an equivalent 8-bit signed integer.
|
static | ToSByte(object) : sbyte
Converts the value of the specified object to an 8-bit signed integer.
|
static | ToSByte(sbyte) : sbyte
Returns the specified 8-bit signed integer; no actual conversion is performed.
|
static | ToSByte(float) : sbyte
Converts the value of the specified single-precision floating-point number to an equivalent 8-bit signed integer.
|
static | ToSByte(string) : sbyte
Converts the specified string representation of a number to an equivalent 8-bit signed integer.
|
static | ToSByte(ushort) : sbyte
Converts the value of the specified 16-bit unsigned integer to the equivalent 8-bit signed integer.
|
static | ToSByte(uint) : sbyte
Converts the value of the specified 32-bit unsigned integer to an equivalent 8-bit signed integer.
|
static | ToSByte(ulong) : sbyte
Converts the value of the specified 64-bit unsigned integer to an equivalent 8-bit signed integer.
|
static | ToSByte(object, IFormatProvider) : sbyte
Converts the value of the specified object to an 8-bit signed integer, using the specified culture-specific formatting information.
|
static | ToSByte(string, IFormatProvider) : sbyte
Converts the specified string representation of a number to an equivalent 8-bit signed integer, using the specified culture-specific formatting information.
|
static | ToSByte(string, int) : sbyte
Converts the string representation of a number in a specified base to an equivalent 8-bit signed integer.
|
static | ToSingle(bool) : float
Converts the specified Boolean value to the equivalent single-precision floating-point number.
|
static | ToSingle(byte) : float
Converts the value of the specified 8-bit unsigned integer to the equivalent single-precision floating-point number.
|
static | ToSingle(char) : float
Calling this method always throws InvalidCastException.
|
static | ToSingle(DateTime) : float
Calling this method always throws InvalidCastException.
|
static | ToSingle(decimal) : float
Converts the value of the specified decimal number to an equivalent single-precision floating-point number.
|
static | ToSingle(double) : float
Converts the value of the specified double-precision floating-point number to an equivalent single-precision floating-point number.
|
static | ToSingle(short) : float
Converts the value of the specified 16-bit signed integer to an equivalent single-precision floating-point number.
|
static | ToSingle(int) : float
Converts the value of the specified 32-bit signed integer to an equivalent single-precision floating-point number.
|
static | ToSingle(long) : float
Converts the value of the specified 64-bit signed integer to an equivalent single-precision floating-point number.
|
static | ToSingle(object) : float
Converts the value of the specified object to a single-precision floating-point number.
|
static | ToSingle(sbyte) : float
Converts the value of the specified 8-bit signed integer to the equivalent single-precision floating-point number.
|
static | ToSingle(float) : float
Returns the specified single-precision floating-point number; no actual conversion is performed.
|
static | ToSingle(string) : float
Converts the specified string representation of a number to an equivalent single-precision floating-point number.
|
static | ToSingle(ushort) : float
Converts the value of the specified 16-bit unsigned integer to the equivalent single-precision floating-point number.
|
static | ToSingle(uint) : float
Converts the value of the specified 32-bit unsigned integer to an equivalent single-precision floating-point number.
|
static | ToSingle(ulong) : float
Converts the value of the specified 64-bit unsigned integer to an equivalent single-precision floating-point number.
|
static | ToSingle(object, IFormatProvider) : float
Converts the value of the specified object to an single-precision floating-point number, using the specified culture-specific formatting information.
|
static | ToSingle(string, IFormatProvider) : float
Converts the specified string representation of a number to an equivalent single-precision floating-point number, using the specified culture-specific formatting information.
|
static | ToString(bool) : string
Converts the specified Boolean value to its equivalent string representation.
|
static | ToString(byte) : string
Converts the value of the specified 8-bit unsigned integer to its equivalent string representation.
|
static | ToString(char) : string
Converts the value of the specified Unicode character to its equivalent string representation.
|
static | ToString(DateTime) : string
Converts the value of the specified DateTime to its equivalent string representation.
|
static | ToString(decimal) : string
Converts the value of the specified decimal number to its equivalent string representation.
|
static | ToString(double) : string
Converts the value of the specified double-precision floating-point number to its equivalent string representation.
|
static | ToString(short) : string
Converts the value of the specified 16-bit signed integer to its equivalent string representation.
|
static | ToString(int) : string
Converts the value of the specified 32-bit signed integer to its equivalent string representation.
|
static | ToString(long) : string
Converts the value of the specified 64-bit signed integer to its equivalent string representation.
|
static | ToString(object) : string
Converts the value of the specified object to its equivalent string representation.
|
static | ToString(sbyte) : string
Converts the value of the specified 8-bit signed integer to its equivalent string representation.
|
static | ToString(float) : string
Converts the value of the specified single-precision floating-point number to its equivalent string representation.
|
static | ToString(string) : string
Returns the specified string instance; no actual conversion is performed.
|
static | ToString(ushort) : string
Converts the value of the specified 16-bit unsigned integer to its equivalent string representation.
|
static | ToString(uint) : string
Converts the value of the specified 32-bit unsigned integer to its equivalent string representation.
|
static | ToString(ulong) : string
Converts the value of the specified 64-bit unsigned integer to its equivalent string representation.
|
static | ToString(bool, IFormatProvider) : string
Converts the specified Boolean value to its equivalent string representation.
|
static | ToString(byte, IFormatProvider) : string
Converts the value of the specified 8-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information.
|
static | ToString(byte, int) : string
Converts the value of an 8-bit unsigned integer to its equivalent string representation in a specified base.
|
static | ToString(char, IFormatProvider) : string
Converts the value of the specified Unicode character to its equivalent string representation, using the specified culture-specific formatting information.
|
static | ToString(DateTime, IFormatProvider) : string
Converts the value of the specified DateTime to its equivalent string representation, using the specified culture-specific formatting information.
|
static | ToString(decimal, IFormatProvider) : string
Converts the value of the specified decimal number to its equivalent string representation, using the specified culture-specific formatting information.
|
static | ToString(double, IFormatProvider) : string
Converts the value of the specified double-precision floating-point number to its equivalent string representation.
|
static | ToString(short, IFormatProvider) : string
Converts the value of the specified 16-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.
|
static | ToString(short, int) : string
Converts the value of a 16-bit signed integer to its equivalent string representation in a specified base.
|
static | ToString(int, IFormatProvider) : string
Converts the value of the specified 32-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.
|
static | ToString(int, int) : string
Converts the value of a 32-bit signed integer to its equivalent string representation in a specified base.
|
static | ToString(long, IFormatProvider) : string
Converts the value of the specified 64-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.
|
static | ToString(long, int) : string
Converts the value of a 64-bit signed integer to its equivalent string representation in a specified base.
|
static | ToString(object, IFormatProvider) : string
Converts the value of the specified object to its equivalent string representation using the specified culture-specific formatting information.
|
static | ToString(sbyte, IFormatProvider) : string
Converts the value of the specified 8-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.
|
static | ToString(float, IFormatProvider) : string
Converts the value of the specified single-precision floating-point number to its equivalent string representation, using the specified culture-specific formatting information.
|
static | ToString(string, IFormatProvider) : string
Returns the specified string instance; no actual conversion is performed.
|
static | ToString(ushort, IFormatProvider) : string
Converts the value of the specified 16-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information.
|
static | ToString(uint, IFormatProvider) : string
Converts the value of the specified 32-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information.
|
static | ToString(ulong, IFormatProvider) : string
Converts the value of the specified 64-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information.
|
static | ToUInt16(bool) : ushort
Converts the specified Boolean value to the equivalent 16-bit unsigned integer.
|
static | ToUInt16(byte) : ushort
Converts the value of the specified 8-bit unsigned integer to the equivalent 16-bit unsigned integer.
|
static | ToUInt16(char) : ushort
Converts the value of the specified Unicode character to the equivalent 16-bit unsigned integer.
|
static | ToUInt16(DateTime) : ushort
Calling this method always throws InvalidCastException.
|
static | ToUInt16(decimal) : ushort
Converts the value of the specified decimal number to an equivalent 16-bit unsigned integer.
|
static | ToUInt16(double) : ushort
Converts the value of the specified double-precision floating-point number to an equivalent 16-bit unsigned integer.
|
static | ToUInt16(short) : ushort
Converts the value of the specified 16-bit signed integer to the equivalent 16-bit unsigned integer.
|
static | ToUInt16(int) : ushort
Converts the value of the specified 32-bit signed integer to an equivalent 16-bit unsigned integer.
|
static | ToUInt16(long) : ushort
Converts the value of the specified 64-bit signed integer to an equivalent 16-bit unsigned integer.
|
static | ToUInt16(object) : ushort
Converts the value of the specified object to a 16-bit unsigned integer.
|
static | ToUInt16(sbyte) : ushort
Converts the value of the specified 8-bit signed integer to the equivalent 16-bit unsigned integer.
|
static | ToUInt16(float) : ushort
Converts the value of the specified single-precision floating-point number to an equivalent 16-bit unsigned integer.
|
static | ToUInt16(string) : ushort
Converts the specified string representation of a number to an equivalent 16-bit unsigned integer.
|
static | ToUInt16(ushort) : ushort
Returns the specified 16-bit unsigned integer; no actual conversion is performed.
|
static | ToUInt16(uint) : ushort
Converts the value of the specified 32-bit unsigned integer to an equivalent 16-bit unsigned integer.
|
static | ToUInt16(ulong) : ushort
Converts the value of the specified 64-bit unsigned integer to an equivalent 16-bit unsigned integer.
|
static | ToUInt16(object, IFormatProvider) : ushort
Converts the value of the specified object to a 16-bit unsigned integer, using the specified culture-specific formatting information.
|
static | ToUInt16(string, IFormatProvider) : ushort
Converts the specified string representation of a number to an equivalent 16-bit unsigned integer, using the specified culture-specific formatting information.
|
static | ToUInt16(string, int) : ushort
Converts the string representation of a number in a specified base to an equivalent 16-bit unsigned integer.
|
static | ToUInt32(bool) : uint
Converts the specified Boolean value to the equivalent 32-bit unsigned integer.
|
static | ToUInt32(byte) : uint
Converts the value of the specified 8-bit unsigned integer to the equivalent 32-bit unsigned integer.
|
static | ToUInt32(char) : uint
Converts the value of the specified Unicode character to the equivalent 32-bit unsigned integer.
|
static | ToUInt32(DateTime) : uint
Calling this method always throws InvalidCastException.
|
static | ToUInt32(decimal) : uint
Converts the value of the specified decimal number to an equivalent 32-bit unsigned integer.
|
static | ToUInt32(double) : uint
Converts the value of the specified double-precision floating-point number to an equivalent 32-bit unsigned integer.
|
static | ToUInt32(short) : uint
Converts the value of the specified 16-bit signed integer to the equivalent 32-bit unsigned integer.
|
static | ToUInt32(int) : uint
Converts the value of the specified 32-bit signed integer to an equivalent 32-bit unsigned integer.
|
static | ToUInt32(long) : uint
Converts the value of the specified 64-bit signed integer to an equivalent 32-bit unsigned integer.
|
static | ToUInt32(object) : uint
Converts the value of the specified object to a 32-bit unsigned integer.
|
static | ToUInt32(sbyte) : uint
Converts the value of the specified 8-bit signed integer to the equivalent 32-bit unsigned integer.
|
static | ToUInt32(float) : uint
Converts the value of the specified single-precision floating-point number to an equivalent 32-bit unsigned integer.
|
static | ToUInt32(string) : uint
Converts the specified string representation of a number to an equivalent 32-bit unsigned integer.
|
static | ToUInt32(ushort) : uint
Converts the value of the specified 16-bit unsigned integer to the equivalent 32-bit unsigned integer.
|
static | ToUInt32(uint) : uint
Returns the specified 32-bit unsigned integer; no actual conversion is performed.
|
static | ToUInt32(ulong) : uint
Converts the value of the specified 64-bit unsigned integer to an equivalent 32-bit unsigned integer.
|
static | ToUInt32(object, IFormatProvider) : uint
Converts the value of the specified object to a 32-bit unsigned integer, using the specified culture-specific formatting information.
|
static | ToUInt32(string, IFormatProvider) : uint
Converts the specified string representation of a number to an equivalent 32-bit unsigned integer, using the specified culture-specific formatting information.
|
static | ToUInt32(string, int) : uint
Converts the string representation of a number in a specified base to an equivalent 32-bit unsigned integer.
|
static | ToUInt64(bool) : ulong
Converts the specified Boolean value to the equivalent 64-bit unsigned integer.
|
static | ToUInt64(byte) : ulong
Converts the value of the specified 8-bit unsigned integer to the equivalent 64-bit unsigned integer.
|
static | ToUInt64(char) : ulong
Converts the value of the specified Unicode character to the equivalent 64-bit unsigned integer.
|
static | ToUInt64(DateTime) : ulong
Calling this method always throws InvalidCastException.
|
static | ToUInt64(decimal) : ulong
Converts the value of the specified decimal number to an equivalent 64-bit unsigned integer.
|
static | ToUInt64(double) : ulong
Converts the value of the specified double-precision floating-point number to an equivalent 64-bit unsigned integer.
|
static | ToUInt64(short) : ulong
Converts the value of the specified 16-bit signed integer to the equivalent 64-bit unsigned integer.
|
static | ToUInt64(int) : ulong
Converts the value of the specified 32-bit signed integer to an equivalent 64-bit unsigned integer.
|
static | ToUInt64(long) : ulong
Converts the value of the specified 64-bit signed integer to an equivalent 64-bit unsigned integer.
|
static | ToUInt64(object) : ulong
Converts the value of the specified object to a 64-bit unsigned integer.
|
static | ToUInt64(sbyte) : ulong
Converts the value of the specified 8-bit signed integer to the equivalent 64-bit unsigned integer.
|
static | ToUInt64(float) : ulong
Converts the value of the specified single-precision floating-point number to an equivalent 64-bit unsigned integer.
|
static | ToUInt64(string) : ulong
Converts the specified string representation of a number to an equivalent 64-bit unsigned integer.
|
static | ToUInt64(ushort) : ulong
Converts the value of the specified 16-bit unsigned integer to the equivalent 64-bit unsigned integer.
|
static | ToUInt64(uint) : ulong
Converts the value of the specified 32-bit unsigned integer to an equivalent 64-bit unsigned integer.
|
static | ToUInt64(ulong) : ulong
Returns the specified 64-bit unsigned integer; no actual conversion is performed.
|
static | ToUInt64(object, IFormatProvider) : ulong
Converts the value of the specified object to a 64-bit unsigned integer, using the specified culture-specific formatting information.
|
static | ToUInt64(string, IFormatProvider) : ulong
Converts the specified string representation of a number to an equivalent 64-bit unsigned integer, using the specified culture-specific formatting information.
|
static | ToUInt64(string, int) : ulong
Converts the string representation of a number in a specified base to an equivalent 64-bit unsigned integer.
|