İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Hatası CS1618

Koşullu özniteliği olduğundan 'method' ile temsilci oluşturulamıyor

Yöntem bazı derlemelerde mevcut olmadığından koşullu yöntemle temsilci oluşturamazsınız.

Aşağıdaki örnek CS1618 oluşturur:

C#
// 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");  
   }  
}