Method | Description | |
---|---|---|
AreEqual ( byte X, byte Y ) : bool |
Perform pairwise test for equality on members of an array. Unlike the builtin functions, ensures debugger stops at useful position.
|
|
Assert ( string Text, bool Test ) : bool |
Yet another assertion method.
|
|
AssertEqual ( string Text, byte X, byte Y ) : bool |
Perform pairwise test for equality on members of an array. Unlike the builtin functions, throws exception if fails.
|
|
AssertNotEqual ( string Text, byte X, byte Y ) : bool |
Perform pairwise test for inequality on members of an array. Unlike the builtin functions, throws exception if fails.
|
|
HexToByte ( string input ) : byte[] |
Convert string of hex data to byte array. [why isn't this in the conversions library?)
|
|
NYI ( string Report ) : void |
Not Yet Implemented method. Cannot be disabled.
|
|
Spoil ( byte &Array ) : void |
Spoil an element in the specified array.
|
|
Spoil ( byte Array, byte BadArray ) : void |
Creates a clone of the input array with the first byte flipped.
|
|
TBS ( string Report ) : void |
Not Yet Implemented method. Cannot be disabled.
|
|
Write ( string Text ) : void |
Write the specified text to the debug output.
|
|
Write ( string Text, Object Data ) : void |
Write formatted data to the debug output.
|
|
WriteHex ( string Text, byte Data ) : void |
Write out a buffer to the console as hex.
|
|
WriteLine ( ) : void |
Write a newline to the debug output.
|
|
WriteLine ( string Text ) : void |
Output functions, pipe data to the console right now. In the future, will pipe to a file as well.
|
|
WriteLine ( string Text, Object Data ) : void |
Write formatted data to the debug output with following newline.
|
Method | Description | |
---|---|---|
HexValue ( char c ) : int |
public static AreEqual ( byte X, byte Y ) : bool | ||
X | byte | First array to compare |
Y | byte | Second array to compare |
return | bool |
public static Assert ( string Text, bool Test ) : bool | ||
Text | string | Text to report. |
Test | bool | Test value. |
return | bool |
public static AssertEqual ( string Text, byte X, byte Y ) : bool | ||
Text | string | Report for exception. |
X | byte | First array to compare |
Y | byte | Second array to compare |
return | bool |
public static AssertNotEqual ( string Text, byte X, byte Y ) : bool | ||
Text | string | Report for exception. |
X | byte | First array to compare |
Y | byte | Second array to compare |
return | bool |
public static HexToByte ( string input ) : byte[] | ||
input | string | String to convert. |
return | byte[] |
public static NYI ( string Report ) : void | ||
Report | string | Text to display on the console. |
return | void |
public static Spoil ( byte &Array ) : void | ||
Array | byte | The array to spoil. |
return | void |
public static Spoil ( byte Array, byte BadArray ) : void | ||
Array | byte | input array |
BadArray | byte | bad array |
return | void |
public static TBS ( string Report ) : void | ||
Report | string | Text to display on the console. |
return | void |
public static Write ( string Text, Object Data ) : void | ||
Text | string | Format string |
Data | Object | Data object to write. |
return | void |
public static WriteHex ( string Text, byte Data ) : void | ||
Text | string | Tag to identify the data |
Data | byte | Data to be written. |
return | void |
public static WriteLine ( string Text ) : void | ||
Text | string | |
return | void |
public static WriteLine ( string Text, Object Data ) : void | ||
Text | string | Format string |
Data | Object | Data object to write. |
return | void |