0
votes
votes
1 answers
Writing an extension method for arrays
I want to write some extension methods for arrays. I'm not quite sure how to approach this. Suppose I have an array: [code]byte[] myArray = new byte[24]; // populate byte array here[/code] I want something like [code]bool areAr ...
