You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
How to NOT a byte array
-
Thread starter
James Dean
-
Start date
How do you NOT a byte array in C#?.
*** Sent via Devdex
http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!
James Dean said:
How do you NOT a byte array in C#?.
for (int i=0; i < array.Length; i++)
{
array
= (byte)~array;
}