Exemplo n.º 1
0
		internal MonoParameterInfo (ParameterInfo pinfo, MemberInfo member) {
			this.ClassImpl = pinfo.ParameterType;
			this.MemberImpl = member;
			this.NameImpl = pinfo.Name;
			this.PositionImpl = pinfo.Position;
			this.AttrsImpl = pinfo.Attributes;
			this.DefaultValueImpl = pinfo.GetDefaultValueImpl ();
			//this.parent = pinfo;
		}
Exemplo n.º 2
0
 internal MonoParameterInfo(ParameterInfo pinfo, MemberInfo member)
 {
     this.ClassImpl        = pinfo.ParameterType;
     this.MemberImpl       = member;
     this.NameImpl         = pinfo.Name;
     this.PositionImpl     = pinfo.Position;
     this.AttrsImpl        = pinfo.Attributes;
     this.DefaultValueImpl = pinfo.GetDefaultValueImpl();
     //this.parent = pinfo;
 }