What would you say are the key differences when comparing Java running a jar with the -server flag and a .net assembly that has been run through ngen.exe It seems like they are trying to do the same thing for the different run-times.
Asked
Active
Viewed 128 times
1 Answers
2
The key differences are that ngen compiles to native code, whereas "java -server" affects how the JVM runs. It's roughly equivalent to the key differences between apples and oranges.

David Arno
- 42,717
- 16
- 86
- 131