Mono.Debugger.Backend.Mono.MetadataHelper.GenericParamInfo.GenericParamInfo C# (CSharp) Method

GenericParamInfo() public method

public GenericParamInfo ( TargetAddress container, TargetAddress klass, string name, int pos ) : System
container TargetAddress
klass TargetAddress
name string
pos int
return System
            public GenericParamInfo(TargetAddress container, TargetAddress klass,
						 string name, int pos)
            {
                this.Container = container;
                this.Klass = klass;
                this.Name = name;
                this.Position = pos;
            }
MetadataHelper.GenericParamInfo