0

我在学习 C#,遇到了一段让我很困惑的代码

 private static List<Customer> CreateCustomerList()
 List<Customer> customers = new List<Customer>{new Customer{FirstName="Orlando"}
 };
 return customers;
 }

我对它开始的那一行感到困惑

private static List<Customer> CreateCustomerList()....

例如,我习惯于看到

private static class CreateCustomerList()....

为什么我需要使用 List 而不是将方法声明为类?

4

1 回答 1

0

您感到困惑的那一行是方法签名,方法的返回类型是 List,这意味着该方法将返回客户实体的列表。

坦克斯

于 2012-10-25T07:18:20.423 回答