,可以按照以下步骤进行:
Dictionary<string, string> dictionary = new Dictionary<string, string>();
string data = "cell1,cell2";
string[] cells = data.Split(',');
dictionary.Add(cells[0], cells[1]);
完整的代码示例如下:
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
Dictionary<string, string> dictionary = new Dictionary<string, string>();
string data = "cell1,cell2";
string[] cells = data.Split(',');
dictionary.Add(cells[0], cells[1]);
// 输出字典中的键值对
foreach (var pair in dictionary)
{
Console.WriteLine("Key: " + pair.Key);
Console.WriteLine("Value: " + pair.Value);
}
}
}
这样,你就可以在C#中向字典添加两个逗号分隔的数据表单元格了。请注意,这只是一个简单的示例,实际应用中可能需要根据具体需求进行适当的修改和扩展。
领取专属 10元无门槛券
手把手带您无忧上云