Dictionary<string, float> PriceList = new Dictionary<string, float>(3);
时间: 2024-05-24 13:12:59 浏览: 139
This line of code initializes a new dictionary called "PriceList" with a capacity of 3 key-value pairs. The keys in the dictionary are of type string, and the values are of type float.
阅读全文