开发者

Visual C++ - Windows Form Control Library Projects - Compilation Type?

开发者 https://www.devze.com 2023-02-17 16:04 出处:网络
if i make Windows Form Control Library Projects in VC开发者_运维技巧++ will they be compiled as CLR or native EXEsIf you\'re using Windows Forms, then you\'re using .NET (and compiling with /clr if yo

if i make Windows Form Control Library Projects in VC开发者_运维技巧++ will they be compiled as CLR or native EXEs


If you're using Windows Forms, then you're using .NET (and compiling with /clr if you're using Managed C++ or C++/CLI to write the code).

You can always find out whether you are compiling a managed library or executable by opening the project Property Pages (right click the project, select Properties): on the Configuration Properties: General page, there is an option "Common Language Runtime Support" that tells you whether you are compiling for the CLR.

0

精彩评论

暂无评论...
验证码 换一张
取 消