Why are binaries so big?

  • Thread starter Thread starter Scirious
  • Start date Start date
S

Scirious

People, why are C# generated binaries so much bigger than Java ones?

TIA,
Scirious
 
Scirious said:
People, why are C# generated binaries so much bigger than Java ones?

Java object files are one per class, by default. To create a single
"assembly", you end up creating a .JAR file, which is a .ZIP file with a
manifest. So, one reason is that Java JARs are compressed.

-- Barry
 
Why are watermelons bigger than baseballs? Same reason. (Hint: a watermelon
is *not* a baseball. They have some similar characteristics, but you can't,
for example, eat a baseball).

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Chicken Salad Alchemist

A lifetime is made up of
Lots of short moments.
 
I would not jump to conclusions here, googling "eat baseballs" would more
then likely turn up someone from the lower end of the gene pool. If not
today then tomorrow. And now that it's been mentioned someone is probably
trying to decide on soy sauce or ketchup....

Cheers,
John
 
Darn if you're not right, John! It's a big world out there. I wouldn't put
anything past at least somebody in the world!

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Chicken Salad Alchemist

A lifetime is made up of
Lots of short moments.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top