0

C# では、インターフェイスを実装するときに必要な値を入力する方法を教えてください。

ここに私のインターフェースコードがあります:

public interface IGridViewWithImageAndTextItem
{
    string type { get; set;}
    string thumbnailDisplayText { get; set; }
    string thumbnailImageWebAddress { get; set; }
}

このインターフェイスを私のクラスに実装すると、次のコードが追加されます。

#region IGridViewWithImageAndTextItem implementation
public string type {
    get {
        throw new NotImplementedException ();
    }
    set {
        throw new NotImplementedException ();
    }
}
public string thumbnailDisplayText {
    get {
        throw new NotImplementedException ();
    }
    set {
        throw new NotImplementedException ();
    }
}
public string thumbnailImageWebAddress {
    get {
        throw new NotImplementedException ();
    }
    set {
        throw new NotImplementedException ();
    }
}
#endregion

インターフェイスを実装したので、次のコードの出現箇所をどの値に置き換えますか。

throw new NotImplementedException ()

コードを単純な{ get; set; }値に変更する必要がありますか、それとも他に何かする必要がありますか?

前もって感謝します

4

1 に答える 1