使用多行注释解析文本文件

时间:2017-02-10 15:54:59

标签: c# fileparsing

我有一个格式如下的文件

-----------------------------------
File: test.cs
Some Text Here 
http:\\link

   Comment #1

   Comment #2

   Comment #X

-----------------------------------

我有以下课程:

public class TextFile
{
    public string File;
    public string Description;
    public string Link;
    public List<string> Comments;
}

到目前为止,我能够获取“ - ”行之间的所有文本,并将它们存储在本地字符串缓冲区中。现在,我试图将该字符串缓冲区解析为TextFile类。我的问题是注释可以包含换行符,所以我不能简单地拆分缓冲区,然后解析字符串数组。

0 个答案:

没有答案