HomeCSharpC# Error CS0646 – Cannot specify the DefaultMember attribute on a type containing an indexer

C# Error CS0646 – Cannot specify the DefaultMember attribute on a type containing an indexer

C# Error

CS0646 – Cannot specify the DefaultMember attribute on a type containing an indexer

Reason for the Error & Solution

Cannot specify the DefaultMember attribute on a type containing an indexer

If a class or other type specifies System.Reflection.DefaultMemberAttribute, it cannot contain an indexer. For more information, see .

The following sample generates CS0646:

// CS0646.cs  
// compile with: /target:library  
[System.Reflection.DefaultMemberAttribute("x")]   // CS0646  
class MyClass  
{  
   public int this[int index]   // an indexer  
   {  
      get  
      {  
         return 0;  
      }  
   }  
  
   public int x = 0;  
}  
  
// OK  
[System.Reflection.DefaultMemberAttribute("x")]  
class MyClass2  
{  
   public int prop  
   {  
      get  
      {  
         return 0;  
      }  
   }  
  
   public int x = 0;  
}  
  
class MyClass3  
{  
   public int this[int index]   // an indexer  
   {  
      get  
      {  
         return 0;  
      }  
   }  
  
   public int x = 0;  
}  

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...