Hello...
  I need to implement the INativeObject interface for a class, and I don't know how to do it. Can someone help ?
  I'm not sure what the handle property should point to. And if it's pointing to the class itself, how to do that in C#.
  public interface INativeObject
    {
        IntPtr Handle
        {
            get;
        }
    }
  Thank you !