Expand Minimize
This topic has not yet been rated - Rate this topic

Compiler Error CS1007

Property accessor already defined

When you declare a property, 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.

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() {}
}
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.