为了账号安全,请及时绑定邮箱和手机立即绑定

如何读取和处理属于一起的多行?

如何读取和处理属于一起的多行?

C#
森栏 2021-06-14 15:12:33
我正在阅读一个带有StreamReader. 现在我想将内容读入一个Dictionary<string, List<string>>我读取的文件如下所示:'someKey'Value1someKey'anotherKey'Value1another Value2anotherKey我正在使用以下代码获取密钥reactionInfo = new Dictionary<string, List<string>>();string line;StreamReader reader = new StreamReader(filePath);while ((line = reader.ReadLine()) != null){   if (line.Trim().StartsWith("'"))   {      List<string> values = new List<string>();        if(!reactionInfo.TryGetValue(line,out values))        {          reactionInfo.Add(line, new List<string>());        }    } }如何将下一行的值映射到上一行中的键?
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 131 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信