参见英文答案 >
What does [param: NotNull] mean in C#?2个
看着System.Windows.Threading.Dispatcher(由Reflector反编译)我遇到了;
看着System.Windows.Threading.Dispatcher(由Reflector反编译)我遇到了;
[field: SecurityCritical] public event DispatcherUnhandledExceptionFilterEventHandler UnhandledExceptionFilter;
我不承认属性声明的’field’部分,它是什么?
编辑:
这是它在参考源中的显示方式:
public event DispatcherUnhandledExceptionFilterEventHandler UnhandledExceptionFilter { [SecurityCritical] [UIPermissionAttribute(SecurityAction.LinkDemand,Unrestricted=true)] add { _unhandledExceptionFilter += value; } [SecurityCritical] [UIPermissionAttribute(SecurityAction.LinkDemand,Unrestricted=true)] remove { _unhandledExceptionFilter -= value; } }