Mono.Debugger.Soft.TypeMirror.NewInstance C# (CSharp) Method

NewInstance() public method

public NewInstance ( ThreadMirror thread, MethodMirror method, IList arguments, InvokeOptions options ) : Value
thread ThreadMirror
method MethodMirror
arguments IList
options InvokeOptions
return Value
		public Value NewInstance (ThreadMirror thread, MethodMirror method, IList<Value> arguments, InvokeOptions options) {
			return ObjectMirror.InvokeMethod (vm, thread, method, null, arguments, options);
		}			
    }

Same methods

TypeMirror::NewInstance ( ThreadMirror thread, MethodMirror method, IList arguments ) : Value