生成.dll库时的一个有关方法属性调用二义性的问题

就是在第一句中的this里面有问题:

public ComponentExporter(Type inputType) : this(inputType, null)
		{
		}

		public ComponentExporter(Type inputType, ICustomTypeDescriptor typeDescriptor) : this(inputType, (typeDescriptor != null) ? typeDescriptor.GetProperties() : new Jayrock.Json.Conversion.CustomTypeDescriptor(inputType).GetProperties())
		{
		}
	

		private ComponentExporter(Type inputType, PropertyDescriptorCollection properties) : base(inputType)
		{
			Debug.Assert(properties != null);
			this._properties = properties;
		}

不太明白怎么回事,往大佬多多相助

不知道你这个问题是否已经解决, 如果还没有解决的话:

如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 以帮助更多的人 ^-^