Mono.Debugger.Frontend.MethodGroupExpression.MethodGroupExpression C# (CSharp) Method

MethodGroupExpression() public method

public MethodGroupExpression ( TargetStructType stype, TargetStructObject instance, string name, TargetFunctionType methods, bool is_instance, bool is_static ) : System
stype Mono.Debugger.Languages.TargetStructType
instance Mono.Debugger.Languages.TargetStructObject
name string
methods Mono.Debugger.Languages.TargetFunctionType
is_instance bool
is_static bool
return System
        public MethodGroupExpression(TargetStructType stype, TargetStructObject instance,
					      string name, TargetFunctionType[] methods,
					      bool is_instance, bool is_static)
        {
            this.stype = stype;
            this.instance = instance;
            this.name = name;
            this.methods = methods;
            this.is_instance = is_instance;
            this.is_static = is_static;
            resolved = true;
        }