Lezen in het Engels

Delen via


Compilerfout CS0557

Dubbele door de gebruiker gedefinieerde conversie in het type 'klasse'

Dubbele conversieroutines zijn niet toegestaan in een klasse.

In het volgende voorbeeld wordt CS0557 gegenereerd:

// CS0557.cs  
namespace x  
{  
    public class ii  
    {  
        public class iii  
        {  
        public static implicit operator int(iii aa)  
        {  
            return 0;  
        }  
  
    // CS0557, delete duplicate  
        public static explicit operator int(iii aa)  
        {  
            return 0;  
        }  
        }  
  
        public static void Main()  
        {  
        }  
    }  
}