<see>(Visual Basic)

يـحدد ارتباط لعضو آخر.

<see cref="member"/>

المعلمات

  • member
    المرجع للعضو أو الحقل الذي يكون متاحاً للاستدعاء من بيئة التحويل البرمجي الحالية. المحول البرمجي يتحقق من وجود عنصر التعليمات البرمجية المحدد و تمرير member إلى اسم العنصر في إخراج XML . member يجب أن يظهر بين علامتي اقتباس مزدوجة (" ").

ملاحظات

استخدم الـ <see> العلامة لتحديد ارتباط من داخل النص. استخدم (seealso> (Visual Basic> للإشارة إلى النص الذي قد تريد أن تظهر في مقطع "انظر أيضاً".

قم بالتحويل البرمجي مع doc/ لمعالجة تعليقات الوثائق للملف.

مثال

يستخدم هذا المثال علامة <see> في مقطع UpdateRecord للإشارة إلى أسلوب DoesRecordExist .

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

راجع أيضًا:

المرجع

علامات XML مستحسنه لتعليقات وثائق (Visual Basic)