The type or namespace name `blabla' could not be found

…yes, I guess that has been asked a million times. Yes I have read the advanced tutorial and yes, I tried all folders. I think I understand what is written there, but sorry, I am still clueless.

I today converted my whole (already advanced) project from javascript to c#. Yes, I had a ton of fun. Now, the only error messages remaining are a lot of

“The type or namespace name `all kinds of scripts’ could not be found. Are you missing a using directive or an assembly reference?”

All scripts reference back and forth between each other. I don’t want to use the editor namespace. Please do not paste the famous link to the unity script compilation tutorial. I do hope there is a fast fix - everything was fine in Javascript.
Thanks a lot!

Do you have “using” directives at the top of the offending scripts? Most scripts should have at least:

using UnityEngine;
using System.Collections;

yes, in all of them - now you scared me…

I found it! One of my classes was named “Filemanger” instead of “Filemanager” - that has caused some kind of chain reaction. Now I have a whole lot of other errors again. But I guess that was it…