If you're just comparing files to see if they are identical, then you don't need separate classes. Just read the files and compare the length. If that's the same then you can read bytes to compare.
The code you provided only shows lstSeats once in the initializeGUI method, and you're just clearing the list then. Maybe I missed it, but I didn't see anywhere where you were adding items to the...
This is really straight forward, basic graphic stuff. Why do you need help commenting the code? This looks like a homework assignmnet to me, and we don't do people's homework for them. If there's...
If you're running at least VS 2005, hopefully you're using a more recent version, you can create a local SQL database, so there's no need to mess with Access unless you're being required to (this...
Does your GC have a Collect method (I'm not familiar with micro .NET)? The collect method is a firmer way of calling the garbage collector, but I do know that you can't always perfectly time when...
I didn't get a good handle on classes until I read Head First C# from Head First Labs. It's the best book I've ever read for learning C# and it has a lot of fun examples- you get to build space...
Depending on what you're doing, they can be faster and lighter on resources. They're most useful if you combine multiple tables into a single data pull- makes it so you only have to make a single...
The thing you need to close is your FileStream object when you're done using it. Using statements automatically close them for you when the block is exited.
My main question is why you're converting the Text of a textbox to a string. It's already a string when you pull the Text. Can't really suggest much more than that as I don't know the expected data...
First, you need to change if (guess = number)- at this moment you're trying to assign the value of number to guess. To test equality you have to use 2 equal signs, like this:
...