VCCodeBase.Comment 属性

获取或设置与代码元素关联的注释。

命名空间:  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
VCCodeBase 元素关联的注释。

备注

Comment 设置或返回标头注释。 返回时,文本不包含任何注释语法。 从包含代码元素的源文档派生出注释文本。 标头注释的行数集合基于注释编写的语言而有所变化。

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

.NET Framework 安全性

请参阅

参考

VCCodeBase 接口

Microsoft.VisualStudio.VCCodeModel 命名空间

其他资源

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