Tagged Questions

0
votes
2answers
202 views

How to generate a binary file? C#

I need to make a method that generates a binary (4 bytes long), receives List of integers and writes this List one by one in the file. So, I have this: public void ...
0
votes
2answers
413 views

How Write a List<int> to binary file (4 bytes long)?

I need to write a List of ints to a binary file of 4 bytes in length, so, I need to make sure that the binary file is correct, and I do the following: using (FileStream fileStream = new ...