我有以下的公共接口歸檔例外
public interface Bar{
public void DoStuff();
}
與內部後端類
internal class BarImpl : Bar{
public void DoStuff(){
// throw exception if invalid state
// do something
}
}
問題:
- 只有
BarImpl
實現Bar
接口。 BarImpl
可能會在DoStuff
方法中拋出異常。
在Bar.DoStuff
xml文檔中記錄這些例外是否有意義?
在此先感謝,
+1爲'Stream.Read'參考!很好的例子 – GETah 2012-02-17 13:38:04