Catatan
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba masuk atau mengubah direktori.
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba mengubah direktori.
Menentukan nilai pengembalian properti atau fungsi.
Sintaksis
<returns>description</returns>
Parameter-parameternya
description
Deskripsi nilai yang dikembalikan.
Komentar
<returns> Gunakan tag dalam komentar untuk deklarasi metode untuk menjelaskan nilai yang dikembalikan.
Kompilasi dengan -doc untuk memproses komentar dokumentasi ke file.
Contoh
Contoh ini menggunakan <returns> tag untuk menjelaskan apa yang DoesRecordExist dikembalikan fungsi.
''' <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