本文介绍了在两个缓冲区上进行异或运算的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好!
只需要您的帮助.
有两个大小相同的缓冲区(字节[]);
There are two buffers (byte[]) of the same size;
什么是最好的速度与激情"?异或的方法?
What is the best "fast and furious" method to xor one on another?
感谢队友.
推荐答案
public byte[] XOR(byte[] buffer1, byte[] buffer2)
{
for(int i = 0; i < buffer1.Length; i++)
buffer1[i] ^= buffer2[i];
return buffer1;
}
-祝您有美好的一天...
- And a good day to you...
这篇关于在两个缓冲区上进行异或运算的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!