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

指示说明中的文本是代码。

<c>text</c>

参数

Parameter

说明

text

希望将其指示为代码的文本。

备注

<c> 标记为您提供了一种方法,以指示说明中的文本应标记为代码。 使用 <code> (Visual Basic) 可将多行指示为代码。

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

示例

本示例使用摘要一节中的 <c> 标记指示 Counter 是代码。

VB
''' <summary>
''' Resets the value the <c>Counter</c> field.
''' </summary>
Public Sub ResetCounter()
    counterValue = 0
End Sub
Private counterValue As Integer = 0
''' <summary>
''' Returns the number of times Counter was called.
''' </summary>
''' <value>Number of times Counter was called.</value>
Public ReadOnly Property Counter() As Integer
    Get
        counterValue += 1
        Return counterValue
    End Get
End Property


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

相关教程