【发布时间】:2010-02-05 00:53:52
【问题描述】:
这是一个例子:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SharpLibrary_MediaManager
{
public class Picture:BaseFile
{
public override void GetFileInformation()
{
throw new NotImplementedException();
}
public override void GetThumbnail()
{
throw new NotImplementedException();
}
}
}
为什么这些是为我自动生成的?它们的用途是什么?我很好奇。 :)
【问题讨论】:
-
这个问题也可能有帮助:stackoverflow.com/questions/410719/…
标签: c# .net inheritance c#-3.0