凡符合下表所列的集合类型,应添加相应的后缀
|说明|后缀|示例|
|--|--|--|
|数组|Array|int[] productArray|
|列表|List|List<Product> productList|
|DataTable/HashTable|Table| HashTable productTable|
|字典|Dictionary|Dictionay<string,string> productDictionary|
|EF中的DbSet/DataSet|Set|DbSet<Product> productSet|