如何使用C#初始化程序初始化字符串列表?我已经尝试了下面的示例,但是它不起作用。
List<string> optionList = new List<string>
{
"AdditionalCardPersonAddressType","AutomaticRaiseCreditLimit","CardDeliveryTimeWeekDay"
}();
这个问题的答案中有一个多维列表的示例stackoverflow.com/questions/34473358/…–
—
barlop