What's the difference between SDK and Runtime in .NET Core?

前端 未结 11 1285
醉酒成梦
醉酒成梦 2021-01-30 19:24

I\'ve read many articles, including this one, yet I can\'t still figure out what\'s the difference, and they have not explained it either in simple terms or at all.

Can

11条回答
  •  深忆病人
    2021-01-30 20:05

    The SDK is all of the stuff that is needed/makes developing a .NET Core application easier, such as the CLI and a compiler.

    The runtime is the "virtual machine" that hosts/runs the application and abstracts all the interaction with the base operating system.

提交回复
热议问题