Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
// Add 2 Items to array list
arrayList.Add("Item 1");
arrayList.Add("Item 2");
remove 2 items
arrayList.RemoveRange(0, arrayList.Count);
// remove all from combo
CmbList.Items.Clear();
// you could also rebind to the empty arrayList (i think)