dotnetex icon indicating copy to clipboard operation
dotnetex copied to clipboard

FarJmp code

Open sidristij opened this issue 11 years ago • 0 comments

Make dynamic label to allow jmp from one method body to another.

void method1()
{
    // ...
    var jmpto = MakeJmpLabel();
    // ...
}

void Method2()
{
    // ...
    jmpto.Jmp();
    // ...
}

sidristij avatar Jun 23 '14 07:06 sidristij