gpt4 book ai didi

c# - 我可以将 HashSet 作为 HashSet 传递吗?

转载 作者:太空宇宙 更新时间:2023-11-03 15:40:13 25 4
gpt4 key购买 nike

我编写了一个接受 HashSet<byte> 的函数范围。我想通过 HashSet<SomeEnumeration>其中 SomeEnumeration具有基础类型 byte .有没有简单的方法可以做到这一点?

public enum SomeEnumeration : byte
{
ZERO = 0,
ONE,
TWO,
THREE
}

public void someFunc( HashSet<byte> aSet )
{
...
}

static void Main()
{
HashSet<SomeEnumeration> mySet = new HashSet<SomeEnumeration>();

...
someFunc(mySet);
}

最佳答案

是的,您可以使用 Cast 扩展方法来做到这一点:

someFunc(new HashSet<byte>(mySet.Cast<byte>()));

关于c# - 我可以将 HashSet<SomeEnumeration> 作为 HashSet<byte> 传递吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30495150/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com