Mono.CSharp.CSharpParser.OperatorDeclaration.OperatorDeclaration C# (CSharp) Method

OperatorDeclaration() public method

public OperatorDeclaration ( Operator op, Mono.CSharp.FullNamedExpression ret_type, Mono.CSharp.Location location ) : System.Text
op Operator
ret_type Mono.CSharp.FullNamedExpression
location Mono.CSharp.Location
return System.Text
	public OperatorDeclaration (Operator.OpType op, FullNamedExpression ret_type, Location location)
	{
		optype = op;
		this.ret_type = ret_type;
		this.location = location;
	}
}
CSharpParser.OperatorDeclaration