I have the line in vb code:
#if Not Debug
which I must convert, and I don\'t see it in c#?
Is there something equivalent to it,
bool isDebugMode = false; #if DEBUG isDebugMode = true; #endif if (isDebugMode == false) { enter code here } else { enter code here }