- Home /
CS0264 - List
This is the line that causes trouble:
private List<Ping> serverPingList = new List<Ping>();
And this is what the Log yells at me:
CS0246: The type or namespace name List
1' could not be found. Are you missing a using directive or an assembly reference.
Comment
Best Answer
Answer by Eric5h5 · May 01, 2013 at 12:38 AM
You need to import the System.Collections.Generic namespace.
So after that was added, I forgot to add that. I get even more errors, well thanks - that solves everything
Your answer

Follow this Question
Related Questions
A node in a childnode? 1 Answer
CS1519 List Error 1 Answer
Help with Putting GameObjects into a list. 2 Answers
error CS0246: The type or namespace name `List' could not be found. 1 Answer
Im getting this error CS0246 2 Answers