C Sharp (C#) - Properties and Encapsulation
Find the error in this C# property code:
private int _count;
public int Count {
get { return _count; }
set { _count = value; }
set { _count = value + 1; }
}