11 lines
174 B
C#
11 lines
174 B
C#
|
// CS0082: A member `Test.get_Value()' is already reserved
|
||
|
// Line: 6
|
||
|
|
||
|
public class Test
|
||
|
{
|
||
|
public string Value {
|
||
|
set { }
|
||
|
}
|
||
|
public string get_Value () { return null; }
|
||
|
}
|