I have a problem to re declare a List<String^>.
The first line compiles fine but I get this error on the second line:
'operator =' function is unavailable in 'System::Collections::Generic::List<T>'
I dont know what could be wrong here ?
List<String^> Lines = gcnew List<String^>();
Lines = gcnew List<String^>();