initialize a list c# code example
Example: initialize list in c#
List<string> optionList = new List<string>
{ "AdditionalCardPersonAdressType", /* rest of elements */ };
List<string> optionList = new List<string>
{ "AdditionalCardPersonAdressType", /* rest of elements */ };