我在学习 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 而不是将方法声明为类?