VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > VB.net教程 >
  • <paramref> (Visual Basic)

将一个词格式化为参数。

<paramref name="name"/>

参数

  • name
    要引用的参数名。 将此名称用双引号括起来 (" ")。

备注

<paramref> 标记为您提供了一种指示词为参数的方法。 可以处理 XML 文件,从而用某种独特的方法格式化该参数。

使用 /doc 进行编译可以将文档注释处理到文件中。

示例

本示例使用 <paramref> 标记引用 id 参数。

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

 

原文链接:https://docs.microsoft.com/zh-cn/previous-versions/visualstudio/visual-studio-2010/ms172662(v=vs.100)


相关教程