C#中继承类的问题

时间:2016-06-20 12:42:23

标签: c# class oop inheritance class-hierarchy

我正在开发一个简单的项目,我创建了几个类图表类:

diagram

我正在WordDocument.cs中编写一个方法ChangeContent,我想更改Size的值,Compilator说当前内容中不存在Size。

你能解释一下为什么吗?

public abstract class BinaryDocuments : Document
{
    public ulong Size
    {
        get { throw new System.NotImplementedException(); }
        set { }
    }
} 

public class WordDocuments : OfficeDocuments, IEditable
{
    public ulong NumberOfChar
    {
        get
        {
            throw new System.NotImplementedException();
        }
        set
        {
        }
    }

    public void ChangeContent(string newContent)
    {
        this.**Size** = 5;
    }
}

0 个答案:

没有答案