Skip to content

Instantly share code, notes, and snippets.

@shassaan
Created November 3, 2020 09:16
Embed
What would you like to do?
Adding data in ArrayList
//Adding elements
var arlist = new ArrayList();
arlist.Add(1);
arlist.Add("Bill");
arlist.Add(" ");
arlist.Add(true);
arlist.Add(4.5);
arlist.Add(null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment