+ 1
Are arrays in C# dynamic, unlike in c++?
3 Answers
+ 4
No, arrays aren't dynamic but instead you can use Lists for that purpose. Lists are dynamic. (Also dictionaries)
+ 4
they not
but like Ali said, you can use the list class like this
List<string> li = new List<string>;
li.Add ("some text");
0
No they aren't