C#/Xamarin Cohort 06B - Resize an Array
Unlike ArrayLists and generic Lists in C#, an Array is a fixed size. Trying to reference an element outside of the bounds (size) of the array will throw an exception. Fortunately, the Array class has a Resize method that allows a method to be copied in memory with its number of elements expanded (or reduced).
Instructor: Stephen Hustedde (CIS162AD | CIS165DC | CIS262AD at South Mountain Community College in Phoenix, AZ)