Okay, so I'm figuring out the differences between Java and C# at the moment as I usually mess around with Processing.org's - processing language.
I've seen in for example C#
and was wondering what is Java's equivalent. Is this the same as
or is the C# still a single dimensional array with two components in it?
I've seen in for example C#
Code:
float className[,] objectName = new Classname[ firstPart , secondPart ];
and was wondering what is Java's equivalent. Is this the same as
Code:
float className[][] objectName = new ClassName[firstPast][secondPart];
or is the C# still a single dimensional array with two components in it?
Last edited: