Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
#endif specifies the end of a conditional directive, which began with the #if directive. For example,
#define DEBUG
// ...
#if DEBUG
Console.WriteLine("Debug version");
#endif
Remarks
A conditional directive, beginning with a #if directive, must explicitly be terminated with a #endif directive. See #if (C# Reference) for an example of how to use #endif.