您现在的位置: 爱51代码网 >> 范文 >> 文章正文
System.Collections.Generic.IEnumerator`1[TEntity] GetEnumerator() 包含泛型参数

System.Collections.Generic.IEnumerator`1[TEntity] GetEnumerator() 包含泛型参数

public IEnumerator<TEntity> GetEnumerator()         {             return Execute<IEnumerator<TEntity>>(Expression.Call(Expression, (MethodInfo)MethodBase.GetCurrentMethod()));         } 

像上面这么写会报这个错误
方法 System.Collections.Generic.IEnumerator`1[TEntity] GetEnumerator() 包含泛型参数
改成这样

C# code?public IEnumerator<TEntity> GetEnumerator()         {             return Execute<IEnumerator<TEntity>>(Expression.Call(Expression,  ((MethodInfo)MethodBase.GetCurrentMethod()).MakeGenericMethod(typeof(TEntity))));         } 

会报这个错误
System.Collections.Generic.IEnumerator`1[TEntity] GetEnumerator() 不是 GenericMethodDefinition。只能对 MethodBase.IsGenericMethodDefinition 为 True 的方法调用 MakeGenericMethod。

Execute方法在哪里定义的。

  • 上一篇文章:

  • 下一篇文章: 没有了
  • 最新文章 热点文章 相关文章
    java如何判断一个字符串里的数字
    随机找出24个不一样的字,在把一
    java怎么实现html转为pdf
    lotus数据列表文档个数如何实时统
    lotus代理中LS如何将字符串保存到
    在lotus BS系统里怎样方便实现统
    undefined reference timer_crea
    linux文件/usr/lib破坏了,还原后
    linux上运行system函数时,print
    Failed to open eth0
    undefined reference timer_crea
    Failed to open eth0
    C/C++洗牌算法源代码
    ZOJ 3700 Ever Dream 文章中单词
    TortoiseGit和msysGit安装及使用
    sharepoint 2010 获取用户信息Us
    设计包含max函数的队列
    mysql主从同步延迟方案解决的学习
    生日旅行总结
    中小板生日快乐随感
    如何用 Webbrowser 控件来点
    C#中如何动态提升权限
    LINK : fatal error LNK1123
    WTL中CHeaderCtrl列表头发生
    如何打开VS2010性能分析向导
    MFC窗体程序结束释放内存
    如何调用vc写的dlll直接返回
    Chartlet饼图提示文字重叠了
    gridview如何返回droplistdo
    未能加载文件活程序集“Acce
     



    设为首页 | 加入收藏 | 网站地图 | 友情链接 |