我在 C# 中看到接口在类中实现时,会给出带有NotImplementedException
块的方法。
这边走
public interface IDisposable
{
void Dispose();
}
并且在实施它时
public class Class1 : IDisposable
{
public void Dispose()
{
throw new NotImplementedException();
}
}
现在我的问题
- 这只是 C# 内置工具,在 VB.Net 中不可用吗?
- 如果否,我如何在 VB.Net 中拥有此功能?