Search This Blog

Saturday, January 23, 2010

Arrays in C#

Switching between C# and VB6 totally messing up my thinking about arrays.....

Examples of C# Arrays

int[] numbers = new int[5] {1, 2, 3, 4, 5};
string[] names = new string[3] {"Matt", "Joanne", "Robert"};

No comments: