閱讀英文

共用方式為


編譯器錯誤 CS0030

無法將類型 'type' 轉換為 'type'

類型之間沒有預先定義的轉換。 您可以定義這些類型之間的自訂轉換。 如需詳細資訊,請參閱使用者定義轉換運算子

下列範例會產生 CS0030:

// CS0030.cs  
namespace x  
{  
   public class iii  
   {  
      /*  
      public static implicit operator iii(int aa)  
      {  
         return null;  
      }  
  
      public static implicit operator int(iii aa)  
      {  
         return 0;  
      }  
      */  
  
      public static iii operator ++(iii aa)  
      {  
         return (iii)0;   // CS0030  
         // uncomment the conversion routines to resolve CS0030  
      }  
  
      public static void Main()  
      {  
      }  
   }  
}