我有一本字典如下
Dictionary<ulong, Dictionary<byte[], byte[]>> Info;
内部字典将byte []数组作为键。
我无法理解如何声明Info
字典的构造函数。对于内部密钥比较,我有ByteArrayComparer
,
public class ByteArrayComparer : IEqualityComparer<byte[]>
{
public bool Equals(byte[] left, byte[] right)
{
if (left == null || right == null)
{
return left == right;
}
if (left.Length != right.Length)
{
return false;
}
for (int i = 0; i < left.Length; i++)
{
if (left[i] != right[i])
{
return false;
}
}
return true;
}
public int GetHashCode(byte[] key)
{
if (key == null)
throw new ArgumentNullException("key");
int sum = 0;
foreach (byte cur in key)
{
sum += cur;
}
return sum;
}
}
我从SO Here
中选择了请告知
答案 0 :(得分:6)
比较器的规范不会直接作为Info
初始化的一部分 - 当您在外部字典中创建 put 的值时。例如:
// It's stateless, so let's just use one of them.
private static readonly IEqualityComparer<byte[]> ByteArrayComparerInstance
= new ByteArrayComparer();
Dictionary<ulong, Dictionary<byte[], byte[]>> Info
= new Dictionary<ulong, Dictionary<byte[], byte[]>();
....
...
Dictionary<byte[], byte[]> valueMap;
if (!Info.TryGetValue(key, out valueMap))
{
valueMap = new Dictionary<byte[], byte[]>(ByteArrayComparerInstance);
Info[key] = valueMap;
}
...
答案 1 :(得分:1)
创建时Info
内部没有任何词典,因此您无法在该步骤中定义比较。您必须为添加到Info
对象中的每个项目执行此操作。