例如,我的服务方法应返回对象的集合。 我可以将其声明为:
public interface IBillComService
{
Task<IEnumerable<RecurringInvoice>> RecurringInvoiceListAsync(int start,
}
或:
public interface IBillComService
{
Task<List<RecurringInvoice>> RecurringInvoiceListAsync(int start,
}
更喜欢什么?