VCCodeClass.Comment 属性

获取或设置与 VCCodeClass 关联的注释。

命名空间:  Microsoft.VisualStudio.VCCodeModel
程序集:  Microsoft.VisualStudio.VCCodeModel(在 Microsoft.VisualStudio.VCCodeModel.dll 中)

语法

声明
Property Comment As String
string Comment { get; set; }
property String^ Comment {
    String^ get ();
    void set (String^ value);
}
abstract Comment : string with get, set
function get Comment () : String 
function set Comment (value : String)

属性值

类型:String
VCCodeClass 关联的注释。

备注

Comment 设置或返回标头注释。 返回时,文本不包含任何注释语法。 从包含代码元素的源文档派生出注释文本。 收集的标题注释行数将因编写注释所使用的语言而异。

设置时,Comment 尝试保持现有注释的样式,所采用的方法为:使用面向行的语法而不使用分隔语法;保持面向行的语法之前的任何缩进;确定注释与代码元素相接还是用空行分隔开等。

.NET Framework 安全性

请参阅

参考

VCCodeClass 接口

Microsoft.VisualStudio.VCCodeModel 命名空间

其他资源

如何:编译和运行自动化对象模型代码示例