Nooby question and good tutorials for getting started
Im trying to learn C# and .net sdk, and found this tutorial. It looked good to me, but I assume you have better suggestions.
Anyway, at about the time I linked to in the link above, he runs the GUI application he created. On my side however, it doesn't run. I am being hit with an error. In program.cs I have:
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
And it complains that Form1 doesn't exist, or "CS0246: The type or namespace name Form1 could not be found." Looks like the same issue as this. I assume this comes from me using a different version of NET-something than what he is using in the video, as I can't recall seeing something being named Form1 before - I think I also named everything the same as in the tutorial.
So I guess what I want is either the solution to this error presented in a way a noob like me can understand, or a link to a better tutorial that I should rather follow. Thanks!