C# 相当于 VB6 中的 ccDebug
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
也许你需要使用
Maybe you need to use
是等效的 C# 代码。
is the equivalent C# code.
如果我正确理解你的问题,几乎是一样的。
有关详细信息,请参阅此 MSDN 页面。
Almost the same if I understand your question correctly.
See this MSDN page for details.
它只是一个项目范围的常量,请参阅此网站的示例:
示例
你最好使用
It is just a project wide constant, see this site for an example:
Example
You would be better off using