Lezen in het Engels

Delen via


Compilerwaarschuwing (niveau 1) CS1581

Ongeldig retourtype in kenmerk XML-opmerkingscref

Bij een poging naar een methode te verwijzen, heeft de compiler een fout gedetecteerd vanwege een ongeldig retourtype.

Opmerking

In het volgende voorbeeld wordt CS1581 gegenereerd:

// CS1581.cs  
// compile with: /W:1 /doc:x.xml  
  
/// <summary>help text</summary>  
public class MyClass  
{  
    /// <summary>help text</summary>  
    public static void Main()  
    {  
    }  
  
    /// <summary>help text</summary>  
    public static explicit operator int(MyClass f)  
    {  
        return 0;  
    }  
}  
  
/// <seealso cref="MyClass.explicit operator intt(MyClass)"/>  // CS1581  
// try the following line instead  
// /// <seealso cref="MyClass.explicit operator int(MyClass)"/>  
public class MyClass2  
{  
}