[Solved] implementing a c# interface [closed]

[ad_1]

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

[ad_2]

solved implementing a c# interface [closed]