- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to use #if..#elif…#else…#endif directives in C#?
All preprocessor directives begin with #, and only white-space characters may appear before a preprocessor directive on a line. Preprocessor directives are not statements, so they do not end with a semicolon (;).
#if
The #if directive allows testing a symbol or symbols to see if they evaluate to true.
#else
It allows to create a compound conditional directive, along with #if.
#elif
It allows creating a compound conditional directive.
#endif
The #endif specifies the end of a conditional directive.
The following is an example showing the usage of #if, #elif, #else and #endif directives −
Example
#define One #undef Two using System; namespace Demo { class Program { static void Main(string[] args) { #if (One && TWO) Console.WriteLine("Both are defined"); #elif (ONE && !TWO) Console.WriteLine("ONE is defined and TWO is undefined"); #elif (!ONE && TWO) Console.WriteLine("ONE is defined and TWO is undefined"); #else Console.WriteLine("Both are undefined"); #endif } } }
Output
Both are undefined
- Related Articles
- How to use #if..#elif…#else…#endif directives in C#?
- How to optimize nested if...elif...else in Python?
- Where to put comments in an if...elif..else construct?
- What is the syntax of Python if...elif...else statement?
- How to use #error and #warning directives in C#?
- What is the ‘if...else if...else’ statement in Java and how to use it?
- How to use ‘else if ladder’ conditional statement is C language?
- How to use if/else condition in select in MySQL?
- How to use if...else statement at the command line in Python?
- What is the ‘if else’ statement in Java and how to use it?
- How to use else statement with Loops in Python?
- C/C++ Preprocessor Directives
- What is if/then directives for debug vs release in C#?
- Ternary operator ?: vs if…else in C/C++
- Explain if-else statement in C language
- How to indent an if...else statement in Python?

Advertisements