BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
List<string> CountryList = new List<string> { "Australia", "Bermuda", "Canada", "Cameroon", "Denmark", "France" };
protected override void OnInitialized()
{
LocalData = CountryList.Select(x => new CountryData()
{
CountryName = x
}).ToList();
}
|