我刚刚安装了来自 Microsoft 的 .NET 4.5 参考源,因为我正在尝试调试我看到的问题,并且在HttpApplication.cs
.
// execution step -- call asynchronous event
internal class AsyncEventExecutionStep : IExecutionStep {
private HttpApplication _application;
private BeginEventHandler _beginHandler;
private EndEventHandler _endHandler;
private Object _state;
private AsyncCallback _completionCallback;
private AsyncStepCompletionInfo _asyncStepCompletionInfo; // per call
private bool _[....]; // per call
private string _targetTypeStr;
注意倒数第二行private bool _[....]; // per call
。
是否是_[....]
有效标识符(在任何编译级别,包括 IL)或自编译后源是否已更改?