TextFieldParser.CommentTokens 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
定义注释标记。 注释标记是一个字符串,当位于行首时,指示该行是一个注释并且分析器应该忽略该行。
public:
property cli::array <System::String ^> ^ CommentTokens { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
public string[]? CommentTokens { get; set; }
public string[] CommentTokens { get; set; }
member this.CommentTokens : string[] with get, set
Public Property CommentTokens As String()
属性值
String[]
一个字符串数组,它包含 TextFieldParser 对象的所有注释标记。
例外
注释标记包含空白。
示例
此示例指定对于 TextFieldParser
, FileReader
应忽略以单引号 ( ) 开头的行。
FileReader.TextFieldType =
Microsoft.VisualBasic.FileIO.FieldType.Delimited
FileReader.CommentTokens = New String() {"'"}
注解
这是一个高级成员;除非单击“ 全部 ”选项卡,否则它不会显示在 IntelliSense 中。
忽略长度为零的注释标记。