I m looking at some Java code, and there is this code that I see often.
Foo.class
This is being used to to indicate the Type of the class? is that similar to
Foo.GetType();
typeof(Foo);
in C# ?
What is it being used for ? and what s the meaning of it?
System.Typeis a general type in .Net, and not specific to C#. I don't know if the same is or isn't true for theClasstype in the JVM (as opposed to the Java language itself). – Merlyn Morgan-Graham Oct 17 '11 at 6:29