Is there any way to reference the source object of a function?
Code:
class MyClass
{
  void SetIt(SomeType Object)
  {
    Object.SomeVariable = the instance of MyClass that this function was called for;
  }
}
Something like that.