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 MyString = new String("4567");
Array myArray=Array.CreateInstance(typeof(Char), 4);
for (int i = myArray.GetLowerBound(0); i <= myArray.GetUpperBound(0); i++) {
myArray.SetValue(MyString.Char(i), i);
}
Array.Reverse(myArray);