GCHandle thisHandle = GCHandle.Alloc(this);//this 是 MyClass类型 IntPtr thisptr = GCHandle.ToIntPtr(thisHandle); GCHandle thisHandle = GCHandle.FromIntPtr(thisptr ); MyClass thisObject = (MyClass)thisHandle.Target;
2021-10-09 12:38:28
GCHandle thisHandle = GCHandle.Alloc(this);//this 是 MyClass类型 IntPtr thisptr = GCHandle.ToIntPtr(thisHandle); GCHandle thisHandle = GCHandle.FromIntPtr(thisptr ); MyClass thisObject = (MyClass)thisHandle.Target;