Goedel.Debug.Trace.Spoil C# (CSharp) Method

Spoil() public static method

Spoil an element in the specified array.
public static Spoil ( byte &Array ) : void
Array byte The array to spoil.
return void
        public static void Spoil(ref byte[] Array) {
            Array[0] = (byte)(Array[0] ^ 0xff);
            }

Same methods

Trace::Spoil ( byte Array, byte BadArray ) : void