// cs111.cs : Class 'Test' already defines a member called 'get_Value' with the same parameter types // Line : 6 public class Test { public string Value { set { } } public string get_Value () { return null; } }