Linked Questions

11 votes
2 answers
78k views

I've searched in StackOverFlow website and over the internet for this question and its relevant questions but I still haven't got a clear answer. I want to know what software may I use to convert any ...
Bilal Sulaiman's user avatar
2 votes
3 answers
6k views

Here is a simple program I made just trying to write a couple variables to a binary file, and then reading it back. I'm trying to figure out how to read a string from a binary file. It wrote it ...
LeBron23's user avatar
  • 185
1 vote
3 answers
3k views

I am using ReadProcessMemory in C# output is bytes[]. I want to covert this to string. How to do that? My code is below.. !ReadProcessMemory(appProcess.Handle, mbi.BaseAddress, buffer, mbi.RegionSize,...
Saravanan I M's user avatar
-1 votes
1 answer
2k views

String inputFile = "C:\\Users\\Neil\\Desktop\\DCR\\file.exe"; Byte[] bytes = File.ReadAllBytes(inputFile); String content = Encoding.Default.GetString(bytes); Console.WriteLine(content); Output of ...
Neil Derno's user avatar
2 votes
2 answers
1k views

How do you obtain a memory dump from a given memory address in the format: Address | Hexadecimal representation | ASCII representation --------------------------------------...
SDReyes's user avatar
  • 9,964
2 votes
2 answers
671 views

I have a problem in my C# program. I am currently developing a gateway (both TCP and UDP protocols), and have to log the traffic to a file. I got some test data to try my gateway with. Example data: ...
Malathiane's user avatar
0 votes
1 answer
2k views

I'm writing a tiny hex viewer for my own needs. Stuck in a situation where the standard Label control won't show up an unprintable characters in string: public string ToASCIIstring(int numColumns) { ...
schikin's user avatar
  • 21
-1 votes
1 answer
588 views

I want a OpenFileDialog to select any file-types and show the file bits in a bitmap image. I mean the selected file contain some 0/1 bits, I want to show them in black and white image. Any Idea?
Vahid's user avatar
  • 27
0 votes
1 answer
882 views

If I have an audio *WAV file or record and I want to extract this information from this audio by C# How I can do it? I want an easy way please Information I wanted to extract it Number of Samples ...
Abdullah Al-Sharif's user avatar
0 votes
1 answer
787 views

I have an ASCII-extended txt file and i need to convert it to a byte array. The problem is that the Null char and the space are decoded with the same 0x20 value. How I can discriminate between these ...
Belkis Morgalo's user avatar
1 vote
0 answers
164 views

I have a problem with my code. After read wbmp data, get width & height, I setPixel according to the data converted into the biarray. But my final png file contains a picture that looks like a ...
user1615529's user avatar