General Discussion

If anyone wants to start collecting/writing commentary lines off their own accord they are more than welcome. I will be trying to setup a web-based interface for you to submit this over the next day or two.
 
Great

Nice to see a new project mates....
all the best for the project.
i don't know anything about programming. i will help in graphic side if needed(eg: logos etc...)
 
I'm using 2008. :)

And sohum, I know C# is case sensitive, but what I meant was, that whenever I type a wrong case in vb.net (for example, filestream instead of FileStream) it automatically corrects it.

Ah well anyways, never mind. C# is easy too. :)
 
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.
 
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.
Why don't you hop into MSN? I can help solve your queries! :p

I've got a bit more friendly with C# by now. I'll try and start a bit with DB programming tomorrow! :)
 
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.

PHP:
// old style
Person[] people = new Person[10];
people[0] = new Person(...);

// new style
List<Person> people = new List<Person>();
people.Add(new Person(...));

Much clearer, imo.

sohummisra added 11 Minutes and 12 Seconds later...

I'll try and start a bit with DB programming tomorrow! :)
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.
 

Users who are viewing this thread

Top