声明内部字典比较器C#

时间:2012-01-30 13:15:38

标签: c# dictionary

我有一本字典如下

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

中选择了

请告知

2 个答案:

答案 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对象中的每个项目执行此操作。