Mono.CSharp.Parameter.Parameter C# (CSharp) Method

Parameter() public method

public Parameter ( Mono.CSharp.FullNamedExpression type, string name, Modifier mod, Mono.CSharp.Attributes attrs, Mono.CSharp.Location loc ) : System
type Mono.CSharp.FullNamedExpression
name string
mod Modifier
attrs Mono.CSharp.Attributes
loc Mono.CSharp.Location
return System
		public Parameter (FullNamedExpression type, string name, Modifier mod, Attributes attrs, Location loc)
		{
			this.name = name;
			modFlags = mod;
			this.loc = loc;
			texpr = type;

			// Only assign, attributes will be attached during resolve
			base.attributes = attrs;
		}