【发布时间】:2015-08-06 10:01:13
【问题描述】:
我正在编写一个 C# 表单应用程序,并且我有一个 PropertyGrid 控件的以下集合:
public class CustomWebpageJavaScriptFunctionCollection : CollectionBase, ICustomTypeDescriptor
{
public void Add(CustomWebpageJavaScriptFunction obj)
{
this.List.Add(obj);
}
public void Remove(CustomWebpageJavaScriptFunction obj)
{
this.List.Remove(obj);
}
public CustomWebpageJavaScriptFunction this[int index]
{
get
{
return (CustomWebpageJavaScriptFunction)this.List[index];
}
}
public String GetClassName()
{
return TypeDescriptor.GetClassName(this, true);
}
public AttributeCollection GetAttributes()
{
return TypeDescriptor.GetAttributes(this, true);
}
public String GetComponentName()
{
return TypeDescriptor.GetComponentName(this, true);
}
public TypeConverter GetConverter()
{
return TypeDescriptor.GetConverter(this, true);
}
public EventDescriptor GetDefaultEvent()
{
return TypeDescriptor.GetDefaultEvent(this, true);
}
public PropertyDescriptor GetDefaultProperty()
{
return TypeDescriptor.GetDefaultProperty(this, true);
}
public object GetEditor(Type editorBaseType)
{
return TypeDescriptor.GetEditor(this, editorBaseType, true);
}
public EventDescriptorCollection GetEvents(Attribute[] attributes)
{
return TypeDescriptor.GetEvents(this, attributes, true);
}
public EventDescriptorCollection GetEvents()
{
return TypeDescriptor.GetEvents(this, true);
}
public object GetPropertyOwner(PropertyDescriptor pd)
{
return this;
}
/// <summary>
/// Called to get the properties of this type. Returns properties with certain
/// attributes. this restriction is not implemented here.
/// </summary>
/// <param name="attributes"></param>
/// <returns></returns>
public PropertyDescriptorCollection GetProperties(Attribute[] attributes)
{
return GetProperties();
}
/// <summary>
/// Called to get the properties of this type.
/// </summary>
/// <returns></returns>
public PropertyDescriptorCollection GetProperties()
{
// Create a collection object to hold property descriptors
PropertyDescriptorCollection pds = new PropertyDescriptorCollection(null);
// Iterate the list of employees
for (int i = 0; i < this.List.Count; i++)
{
// Create a property descriptor for the employee item and add to the property descriptor collection
CustomWebpageJavaScriptFunctionCollectionPropertyDescriptor pd = new CustomWebpageJavaScriptFunctionCollectionPropertyDescriptor(this, i);
pds.Add(pd);
}
// return the property descriptor collection
return pds;
}
}
对上述集合执行 LINQ 查询的最佳方式是什么?
例如,如何对 CollectionBase 列表的内容执行 .Where() 操作?
【问题讨论】:
-
LINQ 需要泛型枚举,
CollectionBase是非泛型的。尝试先执行OfType<object>(),然后您可以在IEnumerable<object>实例上使用LINQ。 -
@odyss-jii:非常感谢。这正是我所需要的。如果您发布答案,我会接受答案。
标签: c# linq collectionbase