Guest_imported
New member
- Jan 1, 1970
- 0
Hi,
it is possible under C# to write any bytes hexadecimal into a stream like MemoryStream?
it is possible under C# to write any bytes hexadecimal into a stream like MemoryStream?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
StringWriter sw = new StringWriter();
int iTest = 234234;
sw.Write(iTest.ToString("X"));