HomeCSharpC# Error CS1618 – Cannot create delegate with ‘{0}’ because it or a method it overrides has a Conditional attribute

C# Error CS1618 – Cannot create delegate with ‘{0}’ because it or a method it overrides has a Conditional attribute

C# Error

CS1618 – Cannot create delegate with ‘{0}’ because it or a method it overrides has a Conditional attribute

Reason for the Error & Solution

Cannot create delegate with ‘method’ because it has a Conditional attribute

You cannot create a delegate with a conditional method because the method might not exist in some builds.

The following sample generates CS1618:

// CS1618.cs  
using System;  
using System.Diagnostics;  
  
delegate void del();  
  
class MakeAnError {  
   public static void Main() {  
      del d = new del(ConditionalMethod);   // CS1618  
      // Invalid because on builds where DEBUG is not set,
      // there will be no "ConditionalMethod".  
   }  
   // To fix the error, remove the next line:  
   [Conditional("DEBUG")]  
   public static void ConditionalMethod()
   {  
      Console.WriteLine("Do something only in debug");  
   }  
}  

Leave a Reply

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...