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.
string[] ar = new string[600];
ar[0] = "blah";
ar[1] = "blah blah";
....
List<string> ar = new List<string>();
ar.Add("blah");
ar.Add("blah blah");