Číst v angličtině

Sdílet prostřednictvím


Chyba kompilátoru CS0668

Dva indexery mají různé názvy; Atribut IndexerName musí být použit se stejným názvem u každého indexeru v rámci typu.

Hodnoty předané atributu IndexerName musí být stejné pro všechny indexery v typu. Další informace o atributu IndexerName naleznete v tématu IndexerNameAttribute Třída.

Následující ukázka vygeneruje CS0668:

// CS0668.cs  
using System;  
using System.Runtime.CompilerServices;  
  
class IndexerClass  
{  
   [IndexerName("IName1")]  
   public int this [int index]   // indexer declaration  
   {  
      get  
      {  
         return index;  
      }  
      set  
      {  
      }  
   }  
  
   [IndexerName("IName2")]  
   public int this [string s]    // CS0668, change IName2 to IName1  
   {  
      get  
      {  
         return int.Parse(s);  
      }  
      set  
      {  
      }  
   }  
  
   void Main()  
   {  
   }  
}