C# compilation time for large projects (compared to C++)

后端 未结 4 1140
暗喜
暗喜 2021-02-19 09:00

I often hear people praise the compilation speed of C#. So far I have only made a few tiny applications, and indeed I noticed that compilation was very fast. However, I was wond

4条回答
  •  清酒与你
    2021-02-19 09:21

    It is also my observation that C# is significantly faster to compile than C++. One of the main reasons is of course templates that don't need to be in headers in C#, as there are no headers. But heavy use of templates (mostly any modern C++ library like Boost) is killing the compile time in C++.

提交回复
热议问题