[This is preliminary documentation and is subject to change.]

Namespace:  Phoenix
Assembly:  PhoenixShared (in PhoenixShared.dll) Version: 0.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public abstract class ByteConverter
Public MustInherit Class ByteConverter
public ref class ByteConverter abstract

Members

            
 All Members  Fields   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
AsciiEncoding
BigEndian
Big Endian means that the high-order byte of the number is stored in memory at the lowest address, and the low-order byte at the highest address. It is used on i.e. Mac platform.
Create(Boolean)
Default
Gets ByteConverter with current platform byte-order.
GetBytes(Byte)
GetBytes(Int16)
GetBytes(Int32)
GetBytes(Int64)
GetBytes(SByte)
GetBytes(UInt16)
GetBytes(UInt32)
GetBytes(UInt64)
GetBytesAscii(String)
GetBytesUnicode(String)
LittleEndian
Little Endian means that the low-order byte of the number is stored in memory at the lowest address, and the high-order byte at the highest address. It is used on PC platform.
ToAsciiString(array<Byte>[]()[], Int32, Int32)
ToByte(array<Byte>[]()[], Int32)
ToBytes(Byte, array<Byte>[]()[], Int32)
ToBytes(Int16, array<Byte>[]()[], Int32)
ToBytes(Int32, array<Byte>[]()[], Int32)
ToBytes(Int64, array<Byte>[]()[], Int32)
ToBytes(SByte, array<Byte>[]()[], Int32)
ToBytes(UInt16, array<Byte>[]()[], Int32)
ToBytes(UInt32, array<Byte>[]()[], Int32)
ToBytes(UInt64, array<Byte>[]()[], Int32)
ToBytesAscii(String, array<Byte>[]()[], Int32)
ToBytesAscii(String, array<Byte>[]()[], Int32, Int32)
ToBytesUnicode(String, array<Byte>[]()[], Int32)
ToBytesUnicode(String, array<Byte>[]()[], Int32, Int32)
ToInt16(array<Byte>[]()[], Int32)
ToInt32(array<Byte>[]()[], Int32)
ToInt64(array<Byte>[]()[], Int32)
ToSByte(array<Byte>[]()[], Int32)
ToUInt16(array<Byte>[]()[], Int32)
ToUInt32(array<Byte>[]()[], Int32)
ToUInt64(array<Byte>[]()[], Int32)
ToUnicodeString(array<Byte>[]()[], Int32, Int32)

Inheritance Hierarchy

System..::.Object
  Phoenix..::.ByteConverter

See Also