variable tag directivas define debug c# programming-languages

tag - ¿Hay alguna forma en C#para replicar un ''#ifndef_DEBUG'' desde C/C++?



tag debug c# (3)

Me gustaría excluir / incluir condicionalmente el código en función de si estoy compilando en modo de depuración.

¿Puedo usar algo tan simple como un #ifndef _DEBUG como lo haría en C ++?



#if !DEBUG // whatever #endif


#if DEBUG Console.WriteLine("Debug version"); #endif #if !DEBUG Console.WriteLine("NOT Debug version"); #endif

Ver this