how to initialize a list variable in 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 */ };