I need to remove byte where value is 0 from a byte array.
Please help..

Code:
byte[] newArray = oldArray.Where(b => b != 0xff).ToArray();
this removing the first position,