<exception> (Visual Basic)
指定要擲回的例外狀況。
<exception cref="member">description</exception>
參數
member
一個可以用於目前編譯環境例外狀況的參考。編譯器會檢查特定的例外狀況是否存在,並在輸出 XML 中將 member 轉譯為正式的項目名稱。member 須以用雙引號 (" ") 括住。description
一段說明文字。
備註
使用 <exception> 標記 (Tag),來指定要擲回的例外狀況。並套用在方法定義上。
使用 /doc 進行編譯,將文件註解處理為檔案。
範例
這個範例會使用 <exception> 標記,來說明 IntDivide 函式能擲回的例外狀況。
''' <exception cref="System.OverflowException">
''' Thrown when <paramref name="denominator"/><c> = 0</c>.
''' </exception>
Public Function IntDivide(
ByVal numerator As Integer,
ByVal denominator As Integer
) As Integer
Return numerator \ denominator
End Function