Skip to content

Instantly share code, notes, and snippets.

@Lahirutech
Last active May 22, 2021 14:32
Show Gist options
  • Save Lahirutech/c7ef8780a1ec4fa22b577ebdccf7a188 to your computer and use it in GitHub Desktop.
Save Lahirutech/c7ef8780a1ec4fa22b577ebdccf7a188 to your computer and use it in GitHub Desktop.
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