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

NewInstance() public method

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

Same methods

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