2012-10-25 72 views
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而不是將方法聲明爲類?

+0

你能解釋多一點..你有CreateCustomerList()它將返回List of Customers。我沒有得到你這裏的困惑。 –

+0

你的問題不是很清楚。我改變了一下我的答案。我希望它有幫助。 –

回答

0

您感到困惑的行是方法簽名,而方法的返回類型是List,意味着該方法將返回客戶實體列表。

Thaanks