Created
November 3, 2020 09:16
-
-
Save shassaan/d9a6afb725735272e95e061ed245e769 to your computer and use it in GitHub Desktop.
Adding data in ArrayList
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
//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