8 lines
167 B
C#
8 lines
167 B
C#
// CS8051: Auto-implemented property `Test.Property' must have set accessor or initializer
|
|
// Line: 6
|
|
|
|
public abstract class Test
|
|
{
|
|
public string Property { get; }
|
|
}
|