G
Guest
Hello
//-----------------
I have following situation:
public class Class1
{
public struct Struct1
{
public void Function1()
{
//Question here. How to access current Class1 instance
}
}
}
//-----------------
Struct1 is nested into Class1.
My Question is how to access from Struct1 code, to current Class1 instance.
Thank you.
//-----------------
I have following situation:
public class Class1
{
public struct Struct1
{
public void Function1()
{
//Question here. How to access current Class1 instance
}
}
}
//-----------------
Struct1 is nested into Class1.
My Question is how to access from Struct1 code, to current Class1 instance.
Thank you.