+ 8
List in C#?
I want to declare a list in C# but it puts out the error: â The type or namespace name 'List<>â could not be found (are you missing a using directive or an assembly reference?)â Does anyone know how to fix this an declare a list ?
3 RĂ©ponses
+ 2
List is in
System.Collections.Generic;
namespace.
Do you have this one included ?
https://code.sololearn.com/czE9KfzqOhFM
+ 1
If a answer helped you please give it a like.
If it was the best answer please mark it as best.
I do appreciate it
0
Thank you !