1 // CS0551: Explicit interface implementation `PropertyClass.PropertyInterface.Value' is missing accessor `PropertyInterface.Value.set'
4 interface PropertyInterface
{
5 int Value { get; set; }
8 public class PropertyClass
: PropertyInterface
{
9 int PropertyInterface
.Value
{