コード例 #1
0
ファイル: StackFrameLine.cs プロジェクト: haise0/reAtomizer
 public StackFrameLine(StackFrameLineType type, ITextEditorUIContext uiContext, SerializedDnToken methodKey, uint ilOffset)
     : base(methodKey, ilOffset)
 {
     this.type      = type;
     this.uiContext = uiContext;
 }
コード例 #2
0
ファイル: StackFrameLine.cs プロジェクト: nakijun/dnSpy
		public StackFrameLine(StackFrameLineType type, DecompilerTextView decompilerTextView, MethodKey methodKey, uint ilOffset)
			: base(methodKey, ilOffset) {
			this.type = type;
			this.decompilerTextView = decompilerTextView;
		}
コード例 #3
0
 public StackFrameLine(StackFrameLineType type, DecompilerTextView decompilerTextView, MethodKey methodKey, uint ilOffset)
     : base(methodKey, ilOffset)
 {
     this.type = type;
     this.decompilerTextView = decompilerTextView;
 }
コード例 #4
0
 public StackFrameLine(StackFrameLineType type, DecompilerTextView decompilerTextView, SerializedDnSpyToken methodKey, uint ilOffset)
     : base(methodKey, ilOffset)
 {
     this.type = type;
     this.decompilerTextView = decompilerTextView;
 }
コード例 #5
0
ファイル: StackFrameLine.cs プロジェクト: GreenDamTan/dnSpy
		public StackFrameLine(StackFrameLineType type, ITextEditorUIContext uiContext, SerializedDnToken methodKey, uint ilOffset)
			: base(methodKey, ilOffset) {
			this.type = type;
			this.uiContext = uiContext;
		}
コード例 #6
0
ファイル: StackFrameLine.cs プロジェクト: arkanoid1/dnSpy
		public StackFrameLine(StackFrameLineType type, DecompilerTextView decompilerTextView, SerializedDnSpyToken methodKey, uint ilOffset)
			: base(methodKey, ilOffset) {
			this.type = type;
			this.decompilerTextView = decompilerTextView;
		}