+ 1
How to declare dynamic array?
I was wondering and searching all over the place how one can declare array dynamically on runtime in C# like C++. In C++ one can do that using pointers how can we implement that in C#
2 Respuestas
+ 4
In C# you'll want to use lists:
Eg. List<int> list=new List<int>();
0
thank-you