字典中的自定义键

时间:2018-08-23 14:37:51

标签: c# collections

我有一本产品类为键的字典。

私人字典_dictProduct = null;

onClick

这是我的比较器类(MyClassSpecialComparer)。

publi class Product
{

 public string ProductName { get; set; }
 public string ProductCategory { get; set; }

}

在这种方法中,我需要能够基于productName和productCategory从字典中检索相应的值。 我如何使用此类来实现此功能?

谢谢。

0 个答案:

没有答案