Sunday 3 December 2017

C# Program to Demonstrate the Working #define Preprocessor


Code:

#define B
#define A
#undef A
using System;
class Program
{
    static void Main()
    {

        #if A
            Console.WriteLine("'A' is Displayed Based on the undef Directive ");
        #elif B
            Console.WriteLine("'B' is Displayed Based on the undef Directive");
        #endif
        Console.ReadLine();
    }
}


Output:

'B' is Displayed Based on the undef Directive


More C# Programs:






















100+ Best Home Decoration Ideas For Christmas Day 2019 To Make Home Beautiful

Best gifts for Christmas Day | Greeting cards for Christmas Day | Gift your children a new gift on Christmas day This Christmas d...