Normally I would just do:
List<string> list = new List<string>();
foreach(string element in ul_myLst)
{
list.Add(element);
}
but I'm not really sure how since it doesn't have get enumerator.
Essentially I just want to do some version of storing all the values of an un ordered list into a list in the codebehind. Also sorry if this is a repost, but I only found people inserting items to a list and not saving items from a list.