mercredi 2 janvier 2008

#ifndef in c sharp

#ifndef _DEBUG
//Code only run in non debug mode
#endif

is translated in c# to:

#if !DEBUG
//Code only run in non debug mode
#endif

Aucun commentaire: