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 ++?
Sí, puedes usar preprocesadores en C #.
Aquí hay una lista de msdn
http://msdn.microsoft.com/en-us/library/ed8yd1ha(VS.71).aspx
#if !DEBUG
// whatever
#endif
#if DEBUG
Console.WriteLine("Debug version");
#endif
#if !DEBUG
Console.WriteLine("NOT Debug version");
#endif
Ver this