Ler em inglês

Compartilhar via


Erro do Compilador CS1618

Não é possível criar delegado com "method" porque ele tem um atributo condicional

Você não pode criar um delegado com um método condicional porque o método pode não existir em alguns builds.

O seguinte exemplo gera o erro 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");  
   }  
}