Last active
May 22, 2021 14:32
-
-
Save Lahirutech/c7ef8780a1ec4fa22b577ebdccf7a188 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ArrayList arlist = new ArrayList() | |
{ | |
1, | |
"Bill", | |
300, | |
4.5f | |
}; | |
arlist.Insert(2, "Third Item"); | |
foreach (var val in arlist) | |
Console.WriteLine(val); | |
//outputs | |
/* | |
1 | |
Bill | |
Third Item | |
300 | |
4.5 | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment