I have a some confusion about the function File.WriteAllBytes.
Actually i read from an image file using
byte[] b = System.IO.File.ReadAllBytes(textBox1.Text);
and then i wrote back the read data to a text file to see how it looks.
System.IO.File.WriteAllBytes(@"D:\abc.txt", b);
But the contents of abc.txt are not pure binary(1010110) , but they appear as :-
ëžÕwN±k›“ùIRA=Ï¥Dh﬒ȪÊj:³0Æî(À÷«3ÚÉid¤n•O<‰-ª@–¢)cùY³Ö˜K„TûËEÇóþ}wtÑ+²=£v*NÌ!\ äji;âíÇ8ÿ ?犴ö¬€Áç#µ:+ŠVÜ„©³Û?çù~VèÖ·ÂËSŠE7RH8}GJGfT?Ý?çüÿ œÌÊR"6ÓŠY¬Š¬L§|n¹> ÷’ÃU{D®tvE!3** Ý× õ¨ã(¨qžO§ùÿ >Ó¥¤…K€@N{ñM(ÊÅ€ûÃŒRtj/²Æ¤¶¹RÁŽxqþÏó@KŒîn皘æ0C/-Ž1Mu>oÊ }é5(Q¢i±pIôÀôÿ ?çÒÂB-á.ãï©Ú}êB®æÇÌyÿ ?çüU¥mã$”ã ‚DiFQ¸'µ,ARGLäc¯4%˟ÜsŸóù~H 3d‚zЇØ........................................
Are the binary 1s and 0s getting converted to some other number system comprising of so many symbols ??