27
Comparaison de tableaux à deux octets dans .NET
Comment puis-je faire ça rapidement? Bien sûr, je peux le faire: static bool ByteArrayCompare(byte[] a1, byte[] a2) { if (a1.Length != a2.Length) return false; for (int i=0; i<a1.Length; i++) if (a1[i]!=a2[i]) return false; return true; } Mais je recherche soit une fonction BCL , soit une méthode éprouvée hautement optimisée …
541
c#
.net
arrays
performance
j#