ALFA.Shared.CodePatch.CodePatch C# (CSharp) Method

CodePatch() public method

Create a generalized code patch.
public CodePatch ( IntPtr PatchOffset, byte Code ) : System
PatchOffset System.IntPtr Supplies the patch offset.
Code byte Supplies the new code.
return System
        public CodePatch(IntPtr PatchOffset, byte[] Code)
        {
            this.PatchOffset = PatchOffset;

            OldCode = PatchCode(PatchOffset, Code);
        }

Same methods

CodePatch::CodePatch ( IntPtr PatchOffset, IntPtr ReplacementFunction, bool Relative ) : System