C# Error CS1007 – Property accessor already defined

C# Error

CS1007 – Property accessor already defined

Reason for the Error & Solution

Property accessor already defined

When you declare a , you must also declare its accessor methods. However, a property cannot have more than one get accessor method or more than one set accessor method.

Example

The following sample generates CS1007:

// CS1007.cs  
public class clx  
{  
    public int MyProperty  
    {  
        get  
        {  
            return 0;  
        }  
        get   // CS1007, this is the second get method  
        {  
            return 0;  
        }  
    }  
  
    public static void Main() {}  
}  

Leave A Reply

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

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...