I get the following error when I try to compile my C# program:
The type or namespace name \'Login\' could not be found (are you missing a using directive or an
You need to add the following line:
using FootballLeagueSystem;
into your all your classes (MainMenu.cs, programme.cs, etc.) that use Login.
Login
At the moment the compiler can't find the Login class.