メンバーの解説セクションを指定します。
構文
<remarks>description</remarks>
パラメーター
description
メンバーの説明。
注釈
<remarks>
タグを使用して型に関する情報を追加し、<summary>で指定された情報を補完します。
この情報はオブジェクト ブラウザに表示されます。 オブジェクト ブラウザの詳細については、「 コードの構造の表示」を参照してください。
-doc を使用してコンパイルし、ドキュメントコメントをファイルに処理します。
例
この例では、 <remarks>
タグを使用して、 UpdateRecord
メソッドの動作を説明します。
''' <param name="id">The ID of the record to update.</param>
''' <remarks>Updates the record <paramref name="id"/>.
''' <para>Use <see cref="DoesRecordExist"/> to verify that
''' the record exists before calling this method.</para>
''' </remarks>
Public Sub UpdateRecord(ByVal id As Integer)
' Code goes here.
End Sub
''' <param name="id">The ID of the record to check.</param>
''' <returns><c>True</c> if <paramref name="id"/> exists,
''' <c>False</c> otherwise.</returns>
''' <remarks><seealso cref="UpdateRecord"/></remarks>
Public Function DoesRecordExist(ByVal id As Integer) As Boolean
' Code goes here.
End Function
こちらも参照ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET