Example of Single Dimension Array in .Net
int [] intArray = new int[3];
intArray[2] = 22; // set the third element to 22
Collections and arrays in .net. Here you find discussion on arrays, arraylist, stack, queue, dictionaries, hashtable, sortedlist, string and stringbuilder, etc.
For .Net Articles, Links, Code and much more logon to DailyFreeCode.com
int [] intArray = new int[3];
intArray[2] = 22; // set the third element to 22
No comments:
Post a Comment