C#
In category General on 07 Apr 2005 @ 01:45 pm
I used C# to write my CSSE3004 assignment in today. It's not all that bad once you get used to the arse-backwards way you have to do everything. That and the fact that the MSDN library is totally crap compared to something like the Java API docs, which are just fantastic!
The worst coding I have ever done, all the buttons were called button1, button2, button3 and it's the first time I have ever written comments that just make the code harder to understand.
What fun!
// The lord said: let data change!
OracleCommand myCommandment = new OracleCommand(order,myConnection);
// and there was change!
myCommandment.ExecuteNonQuery();
OracleCommand myCommandment = new OracleCommand(order,myConnection);
// and there was change!
myCommandment.ExecuteNonQuery();
The worst coding I have ever done, all the buttons were called button1, button2, button3 and it's the first time I have ever written comments that just make the code harder to understand.
What fun!



