是否可以在App_Code中添加C#和VB.NET两种语言的代码文件?如果是这样,我怎样才能实现这一目标?

发布于 2024-08-23 05:13:12 字数 173 浏览 4 评论 0原文

在将两个语言代码文件(即 C# 和 VB.NET)添加到 App_Code 时,出现错误

 文件...文件名...使用不同的语言,  
 这是不允许的,因为它们需要一起编译。

有没有办法添加两种不同的语言文件?

While adding two language code files i.e. C# and VB.NET to App_Code, got an error

 The files ... file names ... use a different language,  
 which is not allowed since they need to be compiled together.

Is there a way to add two different language files?

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

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

发布评论

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

评论(1

深海夜未眠 2024-08-30 05:13:12

创建子文件夹并将所有 VB 代码放在一个文件夹中,将 C# 放在另一个文件夹中。在您的情况下,您将有一个用于 C#,另一个用于 VB

您将需要修改编译元素下的 web.config 以包含这些内容,以便编译器知道将它们包含在编译中

<codeSubDirectories>
   <add directoryName="MyVBCode"/>
   <add directoryName="MyCSharpCode"/>
</codeSubDirectories>

Create sub folders and put all your VB code in one folder and C# in the other. In your case you will have one for C# and the other one for VB

You will need to modify web.config under the compilation element to include these so that the compiler will know to include them in the compilation

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