Category Archives: .net

Java again

After a short stint in the world of C#, I have returned to the world of Java… Everything seems friendlier in the Java world. I’m glad to be back. Have just installed TortoiseSVN (for windows explorer integration with SVN), Tomcat 5.0.28 - because that’s what the project is using… JDK 1.4 and 1.5 because different […]

Jagged/Multi dimensional Arrays (C# Programming Guide)

Why does C#.NET have so multiple ways of defining and using multi-dimensional arrays?
Jagged Arrays (C# Programming Guide)
Jagged arrays have the same declaration style as Java’s multidimensional arrays, and the same idea, but they don’t seem to have the same ease of use! In C Sharp, you must initialise each array in turn…

int[][] jaggedArray = new […]

Oasis CIQ XML

I’ve got this project on at the moment where we are transplanting the address system to use International standards. This is what this diagram I’ve uploaded represents… the CIQ xAL.xsd.
What I need to do is work out how we represent this thing as part of a cSharp (C#) .NET web services application. And I […]