ComEventsHelper.cs 351 B

123456789
  1. namespace System.Runtime.InteropServices
  2. {
  3. public static class ComEventsHelper
  4. {
  5. public static void Combine (object rcw, Guid iid, int dispid, System.Delegate d) => throw new PlatformNotSupportedException ();
  6. public static Delegate Remove (object rcw, Guid iid, int dispid, System.Delegate d) => throw new PlatformNotSupportedException ();
  7. }
  8. }