I have looked for quite a bit but I haven't found a solution to this seemingly easy problem.
I am able to add a TXT (CSV) file named "CSVData.txt" as resource in a Console Application project and access it using the namespace easily - it's named "CSVData" in the project.
string Temp = Properties.Resources.CSVData;
But when I create a Class Library project, I cannot: apparently there's nothing in the namespace "Properties.Resources", even though it is created successfully just as in the Console Application project.
Tested multiple times with fresh projects with the same results.
I'm sure it's something very, very simple, but I can't for the life of me figure this one out.