#if !USING_NET11 using System.Runtime.InteropServices.ComTypes; 是什么意思? #endif是什么意思?

发布于 2024-09-07 03:55:41 字数 199 浏览 5 评论 0原文

下面的代码是什么意思以及它的作用是什么?真的需要吗?

 #if !USING_NET11
 using System.Runtime.InteropServices.ComTypes;
 #endif

在我的项目文件中,我使用 dshownet 包装器实现了网络摄像头捕获。上面的代码位于 Form1.cs 文件中。

What does the following code mean and what does it do? Is it really required?

 #if !USING_NET11
 using System.Runtime.InteropServices.ComTypes;
 #endif

In my project file I have implemented the web cam capture using the dshownet wrapper. The above code was there in the Form1.cs file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浪推晚风 2024-09-14 03:55:41

这意味着:

using System.Runtime.InteropServices.ComTypes;

仅当符号 USING_NET11 为 false 时才会编译到程序集中。

由于 System.Runtime.InteropServices.ComTypes 是在 .NET 2.0 中添加的,因此该指令意味着代码仍将针对 .NET 1.1 进行编译,因为不会编译新引用。

It means that:

using System.Runtime.InteropServices.ComTypes;

will only be compiled into the assembly if the symbol USING_NET11 is false.

Since System.Runtime.InteropServices.ComTypes was added in .NET 2.0, this directive means that the code will still compile against .NET 1.1 since the new reference won't be compiled in.

弱骨蛰伏 2024-09-14 03:55:41

System.Runtime.InteropServices.ComType 是在 .NET Framework 2.0 版中引入的。该代码似乎试图与框架的 1.1 版本兼容,方法是仅在该命名空间上声明 using 语句(如果要编译的版本不是 1.1)。

如果您在 USING_NET11 上进行 Google 搜索 ,您会发现它指向许多托管 DirectX 代码。

The System.Runtime.InteropServices.ComType was introduced in .NET Framework version 2.0. The code appears to be attempting to be compatible with the 1.1 version of the framework by only declaring the using statement on that namespace if the version being compiled against isn't 1.1.

If you do a Google search on USING_NET11, you'll find it points to a lot of managed DirectX code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文