İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Hatası CS1558

'class' uygun bir statik Main yöntemine sahip değil

MainEntryPoint derleyici seçeneği, main yönteminin arandığı bir sınıf belirtti. Ancak Main yöntemi doğru tanımlanmadı.

Aşağıdaki örnek, geçersiz dönüş türü nedeniyle CS1558 oluşturur.

// CS1558.cs  
// compile with: /main:MyNamespace.MyClass  
  
namespace MyNamespace  
{  
   public class MyClass  
   {  
      public static float Main()
      {  
         return 0.0; // CS1558 because the return type is a float.  
      }  
   }  
}