C# 相当于 VB6 中的 ccDebug

发布于 2024-09-07 15:30:17 字数 141 浏览 2 评论 0原文

我正在尝试将 VB6 代码转换为 C#,并且在 VB6 中遇到了此代码,

#If ccDebug then
...
End If.

请帮助我转换此代码或以任何其他方式执行此操作。

谢谢

I am trying to convert VB6 code to c# and I ran into this code in VB6

#If ccDebug then
...
End If.

Please help me converting this code or doing this any other way.

Thanks

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

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

发布评论

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

评论(4

生生漫 2024-09-14 15:30:17

也许你需要使用

#if DEBUG
        //do special stuff 
#endif

Maybe you need to use

#if DEBUG
        //do special stuff 
#endif
慕烟庭风 2024-09-14 15:30:17
if(ccDebug){
}

是等效的 C# 代码。

if(ccDebug){
}

is the equivalent C# code.

思慕 2024-09-14 15:30:17

如果我正确理解你的问题,几乎是一样的。

#if DEBUG
     ....
#endif

有关详细信息,请参阅 MSDN 页面。

Almost the same if I understand your question correctly.

#if DEBUG
     ....
#endif

See this MSDN page for details.

泅渡 2024-09-14 15:30:17

它只是一个项目范围的常量,请参阅此网站的示例:

示例

你最好使用

    #if DEBUG

    #endif

It is just a project wide constant, see this site for an example:

Example

You would be better off using

    #if DEBUG

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