Converts a value to an 8-bit unsigned integer.
Converts an Int16 to an 8-bit unsigned byte.
[Visual Basic] Overloads Public Shared Function ToByte(Integer) As Byte
[C#] public static byte ToByte(short);
[C++] public: static unsigned char ToByte(short);
[JScript] public static function ToByte(Int16) : Byte;
Converts an SByte to an 8-bit unsigned byte.
[Visual Basic] Overloads Public Shared Function ToByte(SByte) As Byte
[C#] public static byte ToByte(sbyte);
[C++] public: static unsigned char ToByte(char);
[JScript] public static function ToByte(SByte) : Byte;
Converts an Int32 to an 8-bit unsigned byte.
[Visual Basic] Overloads Public Shared Function ToByte(Integer) As Byte
[C#] public static byte ToByte(int);
[C++] public: static unsigned char ToByte(int);
[JScript] public static function ToByte(int) : Byte;
Converts a UInt16 to a Byte.
[Visual Basic] Overloads Public Shared Function ToByte(UInt16) As Byte
[C#] public static byte ToByte(ushort);
[C++] public: static unsigned char ToByte(unsigned short);
[JScript] public static function ToByte(UInt16) : Byte;
Returns an 8-bit unsigned byte whose value is true or false, depending on the value to be converted.
[Visual Basic] Overloads Public Shared Function ToByte(Boolean) As Byte
[C#] public static byte ToByte(bool);
[C++] public: static unsigned char ToByte(bool);
[JScript] public static function ToByte(Boolean) : Byte;
Converts an object to an 8-bit unsigned byte.
[Visual Basic] Overloads Public Shared Function ToByte(Object) As Byte
[C#] public static byte ToByte(Object);
[C++] public: static unsigned char ToByte(Object*);
[JScript] public static function ToByte(Object) : Byte;
Converts a Char to a Byte.
[Visual Basic] Overloads Public Shared Function ToByte(Char) As Byte
[C#] public static byte ToByte(char);
[C++] public: static unsigned char ToByte(__wchar_t);
[JScript] public static function ToByte(Char) : Byte;
[To be supplied.]
[Visual Basic] Overloads Public Shared Function ToByte(Byte) As Byte
[C#] public static byte ToByte(byte);
[C++] public: static unsigned char ToByte(unsigned char);
[JScript] public static function ToByte(Byte) : Byte;
Converts a Decimal to an 8-bit unsigned byte.
[Visual Basic] Overloads Public Shared Function ToByte(Decimal) As Byte
[C#] public static byte ToByte(Decimal);
[C++] public: static unsigned char ToByte(Decimal);
[JScript] public static function ToByte(Decimal) : Byte;
Converts a Double to an 8-bit unsigned byte.
[Visual Basic] Overloads Public Shared Function ToByte(Double) As Byte
[C#] public static byte ToByte(double);
[C++] public: static unsigned char ToByte(double);
[JScript] public static function ToByte(double) : Byte;
Converts a String to a value in the specified base, represented as an 8-bit unsigned byte.
[Visual Basic] Overloads Public Shared Function ToByte(String, Integer) As Byte
[C#] public static byte ToByte(String, int);
[C++] public: static unsigned char ToByte(String*, int);
[JScript] public static function ToByte(String, int) : Byte;
Converts a String to an 8-bit unsigned byte.
[Visual Basic] Overloads Public Shared Function ToByte(String) As Byte
[C#] public static byte ToByte(String);
[C++] public: static unsigned char ToByte(String*);
[JScript] public static function ToByte(String) : Byte;
Converts an Int64 to an 8-bit unsigned byte.
[Visual Basic] Overloads Public Shared Function ToByte(Long) As Byte
[C#] public static byte ToByte(long);
[C++] public: static unsigned char ToByte(__int64);
[JScript] public static function ToByte(long) : Byte;
Converts a UInt32 to a Byte.
[Visual Basic] Overloads Public Shared Function ToByte(UInt32) As Byte
[C#] public static byte ToByte(uint);
[C++] public: static unsigned char ToByte(unsigned int);
[JScript] public static function ToByte(UInt32) : Byte;
Converts a Single to an 8-bit unsigned byte.
[Visual Basic] Overloads Public Shared Function ToByte(Single) As Byte
[C#] public static byte ToByte(float);
[C++] public: static unsigned char ToByte(float);
[JScript] public static function ToByte(float) : Byte;
Converts a UInt64 to a Byte.
[Visual Basic] Overloads Public Shared Function ToByte(UInt64) As Byte
[C#] public static byte ToByte(ulong);
[C++] public: static unsigned char ToByte(unsigned __int64);
[JScript] public static function ToByte(UInt64) : Byte;