XBinder C# Runtime Library
2.9
|
Contains conversion support elements such as classes, interfaces and static methods. More...
Classes | |
class | ArraySupport |
This class manages array operations. More... | |
Static Public Member Functions | |
static int | URShift (int number, int bits) |
Performs an unsigned bitwise right shift with the specified number More... | |
static int | URShift (int number, long bits) |
Performs an unsigned bitwise right shift with the specified number More... | |
static long | URShift (long number, int bits) |
Performs an unsigned bitwise right shift with the specified number More... | |
static long | URShift (long number, long bits) |
Performs an unsigned bitwise right shift with the specified number More... | |
static void | Serialize (System.IO.Stream stream, System.Object objectToSend) |
Writes an object to the specified Stream More... | |
static void | Serialize (System.IO.BinaryWriter binaryWriter, System.Object objectToSend) |
Writes an object to the specified BinaryWriter More... | |
static void | WriteStackTrace (System.Exception throwable, System.IO.TextWriter stream) |
Writes the exception stack trace to the received stream More... | |
static byte [] | ToByteArray (sbyte[] sbyteArray) |
Converts an array of sbytes to an array of bytes More... | |
static byte [] | ToByteArray (System.String sourceString) |
Converts a string to an array of bytes More... | |
static byte [] | ToByteArray (System.Object[] tempObjectArray) |
Converts a array of object-type instances to a byte-type array. More... | |
static System.Int32 | ReadInput (System.IO.Stream sourceStream, sbyte[] target, int start, int count) |
Reads a number of characters from the current source Stream and writes the data to the target array at the specified index. More... | |
static System.Int32 | ReadInput (System.IO.TextReader sourceTextReader, sbyte[] target, int start, int count) |
Reads a number of characters from the current source TextReader and writes the data to the target array at the specified index. More... | |
static long | Identity (long literal) |
This method returns the literal value received More... | |
static ulong | Identity (ulong literal) |
This method returns the literal value received More... | |
static float | Identity (float literal) |
This method returns the literal value received More... | |
static double | Identity (double literal) |
This method returns the literal value received More... | |
Contains conversion support elements such as classes, interfaces and static methods.
|
static |
This method returns the literal value received
literal | The literal to return |
|
static |
This method returns the literal value received
literal | The literal to return |
|
static |
This method returns the literal value received
literal | The literal to return |
|
static |
This method returns the literal value received
literal | The literal to return |
|
static |
Reads a number of characters from the current source Stream and writes the data to the target array at the specified index.
sourceStream | The source Stream to read from. |
target | Contains the array of characteres read from the source Stream. |
start | The starting index of the target array. |
count | The maximum number of characters to read from the source Stream. |
|
static |
Reads a number of characters from the current source TextReader and writes the data to the target array at the specified index.
sourceTextReader | The source TextReader to read from |
target | Contains the array of characteres read from the source TextReader. |
start | The starting index of the target array. |
count | The maximum number of characters to read from the source TextReader. |
|
static |
Writes an object to the specified Stream
stream | The target Stream |
objectToSend | The object to be sent |
|
static |
Writes an object to the specified BinaryWriter
stream | The target BinaryWriter |
objectToSend | The object to be sent |
|
static |
Converts an array of sbytes to an array of bytes
sbyteArray | The array of sbytes to be converted |
|
static |
Converts a string to an array of bytes
sourceString | The string to be converted |
|
static |
Converts a array of object-type instances to a byte-type array.
tempObjectArray | Array to convert. |
|
static |
Performs an unsigned bitwise right shift with the specified number
number | Number to operate on |
bits | Ammount of bits to shift |
|
static |
Performs an unsigned bitwise right shift with the specified number
number | Number to operate on |
bits | Ammount of bits to shift |
|
static |
Performs an unsigned bitwise right shift with the specified number
number | Number to operate on |
bits | Ammount of bits to shift |
|
static |
Performs an unsigned bitwise right shift with the specified number
number | Number to operate on |
bits | Ammount of bits to shift |
|
static |
Writes the exception stack trace to the received stream
throwable | Exception to obtain information from |
stream | Output sream used to write to |