C Sharp (C#) - Classes and Objects
Identify the error in this C# code:
class Test {
public int value;
public static void SetValue(int v) {
value = v;
}
}