コード例 #1
0
ファイル: DebuggerField.cs プロジェクト: formylover/dnSpy-1
 public DebuggerField(Debugger debugger, CorField field)
 {
     debugger.Dispatcher.VerifyAccess();
     this.debugger   = debugger;
     this.field      = field;
     this.hashCode   = field.GetHashCode();
     this.token      = field.Token;
     this.Name       = field.GetName() ?? string.Empty;
     this.Attributes = field.GetAttributes();
 }
コード例 #2
0
ファイル: DebuggerField.cs プロジェクト: GreenDamTan/dnSpy
		public DebuggerField(Debugger debugger, CorField field) {
			debugger.Dispatcher.VerifyAccess();
			this.debugger = debugger;
			this.field = field;
			this.hashCode = field.GetHashCode();
			this.token = field.Token;
			this.name = field.GetName() ?? string.Empty;
			this.attributes = field.GetAttributes();
		}