This page is a work in progress.You can help improve it. →

Terminology

TermDefinition
ArrayAn ordered collection of items denoted by []. For example: string[] names = new string[] { "Mark", "Paula", "Sandy" , "Bill" };
ListAn ordered collection of items denoted by new List<VariableType>(). Lists are more flexible than Arrays and can be altered. For example: var names = new List<string>() { "Mark", "Paula", "Sandy" , "Bill" };
Getting Specific Elements from an Array or ListTo access a specific element within a List or Array use the []. For example: var firstName = names[0];
names.Count;The .Count property counts the amount of items within a list.
names.Add();The .Add() method adds a variable of the same data type to the list.
© 2017 - 2022; Built with ♥ in St. Petersburg, Florida.