C Sharp (C#) - Classes and Objects
Examine the following C# code snippet and identify the issue:
class Counter {
public static int count = 0;
public void Increment() {
count++;
}
public static void Reset() {
count = 0;
Increment();
}
}