October 2010 Entries

A quick (and elegant, IMHO) way to convert a byte array to hexadecimal string

public static string ByteArrayToString(byte[] bytes) { return String.Join(string.Empty, Array.ConvertAll(bytes, x => x.ToString("X2"))); }...

«October»
SunMonTueWedThuFriSat
262728293012
3456789
10111213141516
17181920212223
24252627282930
31123456