コード例 #1
0
 protected MarkedTextLine(SerializedDnSpyToken methodKey, uint ilOffset, IMarkedTextLine senderObj = null)
 {
     this.methodKey = methodKey;
     this.ilOffset  = ilOffset;
     this.senderObj = senderObj ?? this;
 }
コード例 #2
0
ファイル: MarkedTextLine.cs プロジェクト: ottrur/dnSpy
 protected MarkedTextLine(MethodKey methodKey, uint ilOffset, IMarkedTextLine senderObj = null)
 {
     this.methodKey = methodKey;
     this.ilOffset  = ilOffset;
     this.senderObj = senderObj ?? this;
 }
コード例 #3
0
ファイル: MarkedTextLine.cs プロジェクト: nakijun/dnSpy
		protected MarkedTextLine(MethodKey methodKey, uint ilOffset, IMarkedTextLine senderObj = null) {
			this.methodKey = methodKey;
			this.ilOffset = ilOffset;
			this.senderObj = senderObj ?? this;
		}
コード例 #4
0
ファイル: MarkedTextLine.cs プロジェクト: lovebanyi/dnSpy
		protected MarkedTextLine(SerializedDnToken methodKey, uint ilOffset, IMarkedTextLine senderObj = null) {
			this.methodKey = methodKey;
			this.ilOffset = ilOffset;
			this.senderObj = senderObj ?? this;
		}