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