为了账号安全,请及时绑定邮箱和手机立即绑定

字节数组的HashSet

字节数组的HashSet

C#
开满天机 2021-03-30 14:14:11
我需要一个用于字节数组的HashSet,以便检查集合中是否存在给定的字节数组。但似乎这不适用于字节数组(或任何数组)。这是我的测试代码:void test(){    byte[] b1 = new byte[] { 1, 2, 3 };    byte[] b2 = new byte[] { 1, 2, 3 };    HashSet<byte[]> set = new HashSet<byte[]>();    set.Add(b1);    set.Add(b2);    Text = set.Count.ToString();//returns 2 instead of the expected 1.}有没有一种方法可以为字节数组创建HashSet?
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 216 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信