我想得到所有以单词“Foo”开头的对象集。我已经编写了下面的代码,但它没有进入 if 构造。
foreach (PropertyDescriptor prop in TypeDescriptor.GetProperties(context))
{
if (prop.PropertyType == typeof(ObjectSet<>))
{
// It doesn't step here even though
// prop.PropertyType is an ObjectSet`1...
请帮忙。