hi all,
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
hi all,
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
It is just a project wide constant, see this site for an example:
You would be better off using
#if DEBUG
#endif