我一直在网上搜索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)
}
}
答案 0 :(得分:3)
IEnumerable是一个&#34;事物列表&#34;你可以循环。在这种情况下,它是一个IStatementRow的列表。
调用GetMiniStatement函数时返回IStatementRow事项列表。
答案 1 :(得分:-3)