Indicates to compilers that a method call or attribute should be ignored unless a specified conditional compilation symbol is defined. : Attributes « Reflection « C# / C Sharp






Indicates to compilers that a method call or attribute should be ignored unless a specified conditional compilation symbol is defined.

  
#define CONDITION1
#define CONDITION2
using System;
using System.Diagnostics;

class Test
{
    static void Main()
    {               
        Console.WriteLine("Calling Method1");
        Method1(3);
        Console.WriteLine("Calling Method2");
        Method2();

        Console.WriteLine("Using the Debug class");
        Debug.Listeners.Add(new ConsoleTraceListener());
        Debug.WriteLine("DEBUG is defined");
    }

    [Conditional("CONDITION1")]
    public static void Method1(int x)
    {
        Console.WriteLine("CONDITION1 is defined");
    }

    [Conditional("CONDITION1"), Conditional("Condition2")]  
    public static void Method2()
    {
        Console.WriteLine("CONDITION1 or Condition2 is defined");
    }
}

   
    
  








Related examples in the same category

1.Use GetCustomAttribute
2.Attributes:Reflecting on AttributesAttributes:Reflecting on Attributes
3.Displaying attributes for a class.
4.Specifies flags that describe the attributes of a field.Specifies flags that describe the attributes of a field.
5.Defines a company name custom attribute for an assembly manifest.
6.Defines a copyright custom attribute for an assembly manifest.
7.Represents the base class for custom attributes.
8.Retrieves a custom attribute applied to a specified assembly.
9.Retrieves a custom attribute applied to a member of a type.
10.Get a custom attribute applied to a member of a type.
11.Get an array of the custom attributes applied to an assembly. A parameter specifies the assembly.
12.Get an array of the custom attributes applied to a method parameter.
13.Attribute.IsDefaultAttribute
14.Attribute.IsDefined
15.Determines whether any custom attributes are applied to an assembly.
16.Determines whether any custom attributes are applied to a member of a type.
17.Determines whether any custom attributes of a specified type are applied to a module.
18.Determines whether any custom attributes are applied to a method parameter.
19.Get member attribute
20.Attributed Types Utility
21.Retrieve Method Attribute Only
22.Retrieve Field Attribute List
23.Get Types With Attribute
24.Get Methods With Attribute
25.Get attribute value and convert to other type