[Solved] interface List Error “does not implement interface member”


In your interface you declare a property but in VP8 you have a field. Change it to

public class VP8 : Controls.IVideoCodec // <-- Gives Error
{
    public List<string> test  {get; set;} = new List<string>()
    {
        "1",
        "2",
        "3"
    };

    public void Example()
    {
        //...
    }
}

1

solved interface List Error “does not implement interface member”