gpt4 book ai didi

guid - 如何合并两个GUID值

转载 作者:行者123 更新时间:2023-12-03 09:44:12 25 4
gpt4 key购买 nike

我想结合两个Guid值并生成一个32位的字母数字值(可以通过使用哈希来完成)。

最佳答案

不漂亮,但是可以用..

 private static Guid MungeTwoGuids(Guid guid1, Guid guid2)
{
const int BYTECOUNT = 16;
byte[] destByte = new byte[BYTECOUNT];
byte[] guid1Byte = guid1.ToByteArray();
byte[] guid2Byte = guid2.ToByteArray();

for (int i = 0; i < BYTECOUNT; i++)
{
destByte[i] = (byte) (guid1Byte[i] ^ guid2Byte[i]);
}
return new Guid(destByte);
}
是的,我可以处理非唯一保证人的案件

关于guid - 如何合并两个GUID值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1383030/

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