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.
ArrayList array = new ArrayList();
array.Add(new TextBox());
foreach(object o in array)
{
TextBox box = (TextBox)o;
box.Text = "...";
}
IList<TextBox> array = new List<TextBox>();
array.Add(new TextBox());
foreach(TextBox box in array)
{
box.Text = "...";
}