コード例 #1
0
 EditMethodBodyILCommand(IMethodAnnotations methodAnnotations, MethodNode methodNode, MethodBodyOptions options)
 {
     this.methodAnnotations = methodAnnotations;
     this.methodNode        = methodNode;
     newOptions             = options;
     origMethodBody         = methodNode.MethodDef.MethodBody;
 }
コード例 #2
0
 MethodBodySettingsCommand(IMethodAnnotations methodAnnotations, IMethodNode methodNode, MethodBodyOptions options)
 {
     this.methodAnnotations = methodAnnotations;
     this.methodNode        = methodNode;
     this.newOptions        = options;
     this.origMethodBody    = methodNode.MethodDef.MethodBody;
 }
コード例 #3
0
 MethodBodySettingsCommand(MethodTreeNode methodNode, MethodBodyOptions options)
 {
     this.methodNode     = methodNode;
     this.newOptions     = options;
     this.origMethodBody = methodNode.MethodDefinition.MethodBody;
 }
コード例 #4
0
		EditMethodBodyILCommand(IMethodAnnotations methodAnnotations, MethodNode methodNode, MethodBodyOptions options) {
			this.methodAnnotations = methodAnnotations;
			this.methodNode = methodNode;
			newOptions = options;
			origMethodBody = methodNode.MethodDef.MethodBody;
		}
コード例 #5
0
ファイル: MethodBodyCommands.cs プロジェクト: lovebanyi/dnSpy
		MethodBodySettingsCommand(IMethodAnnotations methodAnnotations, IMethodNode methodNode, MethodBodyOptions options) {
			this.methodAnnotations = methodAnnotations;
			this.methodNode = methodNode;
			this.newOptions = options;
			this.origMethodBody = methodNode.MethodDef.MethodBody;
		}
コード例 #6
0
ファイル: MethodBodyCommands.cs プロジェクト: se7ensoft/dnSpy
 MethodBodySettingsCommand(MethodTreeNode methodNode, MethodBodyOptions options)
 {
     this.methodNode = methodNode;
     this.newOptions = options;
     this.origMethodBody = methodNode.MethodDefinition.MethodBody;
 }