微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – 制作一个通用类IEnumerable

我有一个使用类型参数的泛型类

public class CustomClass<T> 

我正在使用它与ObservableCollection< someClass>类型.我想要的是让这个类实现IEnumerable接口,所以我做了以下事情:

public class CustomClass<T> : IEnumerable

#region Variable Declarations
 ...
#endregion

#region Constructor and CustomClass<T> properties and methods
 ...
#endregion

#region Here I add the code for IEnumerable to work

private T theObservableCollection
    {
        get
        {
            if (typeof(T) == typeof(ObservableCollection<someClass>))
                return theObservableCollection;
            else
                return default(T);
        }
    }

    //Create a public GetEnumerator method, the basic ingredient of an IEnumerable interface.
    public IEnumerator GetEnumerator()
    {
        IEnumerator r = (IEnumerator)new SettingEnumerator(this);
        return r;
    }

    //Create a nested-class
    class SettingEnumerator
    {
        int index;
        CustomClass<T> sp;

        public SettingEnumerator(CustomClass<T> str_obj)
        {
            index = -1;
            sp = str_obj;
        }

        public object Current
        {
            get
            {
                return sp.theObservableCollection[index];
            }
        }

        public bool MoveNext()
        {
            if (index < sp.theObservableCollection.Length - 1)
            {
                index++;
                return true;
            }
            return false;
        }

        public void Reset()
        {
            index = -1;
        }
    }  


#endregion

编译器抱怨:

Cannot apply indexing with [] to an expression of type ‘T’

我知道那里有一些问题,但我不知道如何实现我想要的,最终是成功的

public class CustomClass<T> 

一个

public class CustomClass<T> : IEnumerable

解决方法:

尝试实现IEnumerable< T>而不是IEnumerable

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐