* TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
[mono-project.git] / mcs / errors / cs0111-12.cs
blobc5e987ce31b39a0625f70bff8b3b01754d8b209d
1 // cs0111-12.cs: `Test.get_Value()' is already defined. Rename this member or use different parameter types
2 // Line : 6
4 public class Test
6 public string Value {
7 set { }
9 public string get_Value () { return null; }