ILSpy反编译C#代码时出现的[MethodImpl(MethodImplOptions.Synchronized)]问题

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 15:55   3052   0

如下为反编译后的代码

public event EventHandler PageCountChanged
  {
   [MethodImpl(MethodImplOptions.Synchronized)]
   add
   {
    this.PageCountChanged = (EventHandler)Delegate.Combine(this.PageCountChanged, value);
   }
   [MethodImpl(MethodImplOptions.Synchronized)]
   remove
   {
    this.PageCountChanged = (EventHandler)Delegate.Remove(this.PageCountChanged, value);
   }
  }

实际上只是声明了一个事件,只取第一行就好了

public event EventHandler PageCountChanged;

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP