我有一个字典,其键为某个整数值,它是数组的索引和值字段中的字符串。我需要同一字典中键之间的差异总和
Dictionary<int, string> foo = new Dictionary<int, string>()
{
{0,"text1"},
{2,"text2"},
{6,"text3"},
{8,"text4"}
};
输出
- (8-6)=2
- (6-2)=4
- (2-0)=2
总计:2+4+2=8
我有一个字典,其键为某个整数值,它是数组的索引和值字段中的字符串。我需要同一字典中键之间的差异总和
Dictionary<int, string> foo = new Dictionary<int, string>()
{
{0,"text1"},
{2,"text2"},
{6,"text3"},
{8,"text4"}
};
输出
总计:2+4+2=8