Interface NotImplementedExceptions

本文关键字:NotImplementedExceptions Interface | 更新日期: 2023-09-27 18:09:57

在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; }值,或者需要做其他事情?

Thanks in advance

Interface NotImplementedExceptions

可以用

代替
{ get; set; }

所以你的代码将是:

public string type { get; set;}
public string thumbnailDisplayText { get; set; }
public string thumbnailImageWebAddress { get; set; }
相关文章:
  • 没有找到相关文章