views:

86

answers:

1

Here is a little something we noticed today and we do not have an explanation for it.

My co worker compiled his current project (C#/WinForms/Visual Studio) and the dll was about 170 kb in size. He compiled the same project again and the dll was 220 kb in size. He did not touch anything else just hit the compile button again and the output was a much bigger file. After that the file size did not change anymore until he cleaned up the project. Then the same thing did happen: 170 kb first then 220 kb.

Is this normal? And why does it happen? Both version of the file seemed to work fine.

+3  A: 

When you build something you already have, it might take shortcuts to make compiling as fast as possible. When you do a full rebuild, do you get consistent results?

Lou Franco
Joey