I'm fairly new to C# and thought I'd start with the tutorials here.
I have done the first 3, and was researching more about C# classes and the various ways you can use them. It then dawned on me that all my code was in one class (MainForm, as I'm using SharpDevelop) and I should try and organise it better. However, when I try to refer to code in other classes, I get a StackOverflowException. I have instantiated the class (e.g. CheckAnswers checkanswers = new checkanswers;), what's going wrong? I can post the code if need be, but my guess is that this is some n00b error that is fairly easy to diagnose.
EDIT:
Code - https://docs.google.com/open?id=0B9vVcIham8NHMGlNaDk3MTZ6ejA
There's quite a bit. This is only the code that I've written myself, not the form config stuff.