如何在基于 Web 的 ASP.NET 应用程序 C# 中添加不安全关键字

发布于 2024-11-04 21:44:56 字数 155 浏览 0 评论 0原文

你好 我如何在基于网络的应用程序中使用不安全关键字作为指针? 在 Windows 应用程序中,我们在构建标签下的项目属性部分中进行设置,我们可以选中允许不安全代码复选框,但在基于 Web 的应用程序中如何允许不安全代码或任何其他替换不安全代码(指针) asp.net c#

谢谢。

Hi
how i can use unsafe keyword in web based application for pointers?
In windows application we have setting in properties section of project under build tag we can check allow unsafe code checkbox, but in web based application how to allow unsafe code or any other in replacement of unsafe code (Pointer)
asp.net c#

Thank you.

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

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

发布评论

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

评论(1

巨坚强 2024-11-11 21:44:56

如果这是一个 Web 应用程序,您只需转到项目的属性并允许不安全代码,就像在任何标准类库中所做的那样。如果它是一个网站,您可以尝试将以下内容放入您的 web.config 中:

<system.codedom>
    <compilers>
        <compiler 
            language="c#;cs;csharp" 
            extension=".cs" 
            compilerOptions="/unsafe"
            type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    </compilers>
</system.codedom>

If this is a web application you can simply go to the properties of the project and allow unsafe code as you would do in any standard class library. If it is a web site you could try putting the following in your web.config:

<system.codedom>
    <compilers>
        <compiler 
            language="c#;cs;csharp" 
            extension=".cs" 
            compilerOptions="/unsafe"
            type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    </compilers>
</system.codedom>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文