[Solved] implementing a c# interface [closed]


you are throwing an NotInprementedException on the setter of the property. if you want automatic properties replace

    get
    {
        throw new NotImplementedException();
    }
    set
    {
        throw new NotImplementedException();
    }

with

    get; set;

1

solved implementing a c# interface [closed]