0

What is the difference between List<MyClass> and MyClass[] in C#.

Thanks

1 Answers1

1

MyClass[] is an array, and once set in size it can't grow.

A List<MyClass>, however, can have things constantly added to it.

Corey Thompson
  • 398
  • 6
  • 18