I am looking for an algorithm that can get the object that called the method, within that method.
For instance:
public class Class1 { public void Me
or just pass the object as method parameter.
public void Method(object callerObject) { .. }
and call the Method:
myClass.Method(this);
regards, Florian