access a local varible in a different function csharp

Code Example - access a local varible in a different function csharp

                
                        The closest thing that somehow relates to your question that I can think of are ref-Parameters in method calls:

void SomeMethod()
{
    int x = 1;
    SomeOtherMethod(ref x);
    // at this point x==2
}

void SomeOtherMethod(ref int a)
{
    a = 2;
}