如何在CollectionBase上执行LINQ操作?

时间:2015-08-06 10:01:14

标签: c# linq collectionbase

我正在编写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 List的内容执行.Where()操作?

1 个答案:

答案 0 :(得分:2)

LINQ需要通用枚举,CollectionBase是非通用的。首先尝试OfType<object>(),然后在IEnumerable<object>实例上使用LINQ。

修改:如评论中所述,您还可以使用Cast<object>()。两种方法之间的区别在于OfType将包含可以在枚举中强制转换为指定类型的元素,并跳过其余的元素,而Cast要求所有元素都可以强制转换为类型(否则抛出异常)。 Cast速度更快,因为它会跳过支票并直接进行投射。

Cast迭代器源:

foreach (object obj in source) yield return (TResult)obj;

OfType迭代器源:

foreach (object obj in source) {
    if (obj is TResult) yield return (TResult)obj;
}