以下代表我的代码:
Dictionary<string, Tuple<string, string>> headCS = new Dictionary<string, Tuple<string, string>> { };
while (results.Read())
{
headCS.Add(results["ID"].ToString(),
new Tuple<string, string>(results["TEXT_HEADER"].ToString(),
results["TEXT_CONTENT"].ToString()));
}
valueIntroduction.InnerHtml = headCS.Values.ElementAt(0).ToString();
在valueIntroduction.InnerHtml
中,它既有标题又有内容。现在我想分别拆分为 Header 和 Content 。但我想在一个字符串中分别获取标题和在字符串中分别获取内容。知道如何实现这一目标吗?
例如上面的输出是(100, (Intro, My name is vimal))
。“100”代表key,“Intro”代表Header,“My name is vimal”代表Content。