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

VariableInfo() private method

private VariableInfo ( string name, System.TypeSpec type, int offset, IMemberContext context ) : System
name string
type System.TypeSpec
offset int
context IMemberContext
return System
		VariableInfo (string name, TypeSpec type, int offset, IMemberContext context)
		{
			this.Name = name;
			this.Offset = offset;
			this.TypeInfo = TypeInfo.GetTypeInfo (type, context);

			Length = TypeInfo.TotalLength;

			Initialize ();
		}

Same methods

VariableInfo::VariableInfo ( VariableInfo parent, TypeInfo type ) : System