需要帮助来解释这一点。我是C#的初学者

时间:2017-02-20 04:06:36

标签: c# .net

我一直在网上搜索IEnumerable的年龄,但它们都在program.cs文件中。

有人可以告诉我下面的代码是什么吗?

namespace customBank.Interfaces
{
    public class Bank : customBank // the bank take the format of customBank as interface.
    {
        public IEnumerable<IStatementRow> GetMiniStatement(IAccount account)
    }
}

2 个答案:

答案 0 :(得分:3)

IEnumerable是一个&#34;事物列表&#34;你可以循环。在这种情况下,它是一个IStatementRow的列表。

调用GetMiniStatement函数时返回IStatementRow事项列表。

答案 1 :(得分:-3)

请参阅:IEnumerable Interface

另见:Interfaces

一旦你读到它,你就会明白你的代码上发生了什么。