With commentary do you want us to submit lines for that? Maybe we can take some from TAOC or Battrick and alter them a bit.
GUI.are we looking at a good GUI based program, or a command line version like cricksim?
Why don't you hop into MSN? I can help solve your queries!But the drop down list helps a lot...
Like, i generally type console instead of Console, and i just need to press enter to correct it.
I'm having some trouble with the strings and arrays. The inbuilt help is Bad.
Hmm... using the System.Collections classes over arrays is probably going to be a better idea 90% of the time. In particular, take a look at the List class. That is basically a dynamic generic list backed by an array.I'm having some trouble with the strings and arrays. The inbuilt help is Bad.
// old style
Person[] people = new Person[10];
people[0] = new Person(...);
// new style
List<Person> people = new List<Person>();
people.Add(new Person(...));
You don't need to get too deep into DB coding for this project since we will probably be using NHibernate or some other sort of object mapping/persistence tool.I'll try and start a bit with DB programming tomorrow!![]()