Главная » Статьи » Visual Basic » Библиотека Visual Basic

<seealso> (Visual Basic)
Указывает ссылку, которая отображается в разделе "Cм. также".

<seealso cref="member"/>

Параметры

member

Ссылка на член или поле, которое может вызываться из текущей среды компиляции.The compiler checks that the given code element exists and passes member to the element name in the output XML. member must appear within double quotation marks (" ").

Заметки

Используйте тег <seealso>, чтобы указать текст, который должен отображаться в разделе "См. также". Используйте <see> (Visual Basic), чтобы указать ссылку в тексте

Чтобы обработать комментарии документации в файле, используйте при компиляции параметр /doc.

Пример

Этот пример использует тег <seealso> в разделе примечаний DoesRecordExist для ссылки на метод UpdateRecord.

VB

''' <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





Источник: http://expert1.ucoz.com/
Категория: Библиотека Visual Basic | Добавил: hitman (07.04.2012)
Просмотров: 832 | Теги: vb library | Рейтинг: 0.0/0
Всего комментариев: 0
Имя *:
Email *:
Код *: