CSE.Exps.MethResSettings.MethResSettings C# (CSharp) Метод

MethResSettings() публичный Метод

Constructor for MethResSettings objects
public MethResSettings ( object env, string name, CseObject args, bool isExtInvocation )
env object The environment to use
name string The name of the method
args CseObject Arguments to pass to the method
isExtInvocation bool True if this is an extended invocation, false otherwise
		public MethResSettings(object env, string name, CseObject[] args, bool isExtInvocation) {
			Env = env;
			Name = name;
			Args = args;
			IsExtInvocation = isExtInvocation;
		}
	}
MethResSettings