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 FrameCodesBinaryWriter(List<int> frameCodes)
{
using (FileStream fileStream = new FileStream(binaryFilePath, FileMode.Create)) // destiny file directory.
{
using (BinaryWriter binaryWriter = new BinaryWriter(fileStream))
{
for (int i = 0; i < frameCodes.Count; i++)
{
binaryWriter.Write(frameCodes[i]);
}
binaryWriter.Close();
}
}
}
is this correct? or some other solution please
binaryWriter. Theusingstatement takes care of doing that correctly. – R. Martinho Fernandes Apr 18 '11 at 17:10BinaryReaderto read back the values and check if the numbers are equivalent? This is very simple debugging. – StackUnderflow Apr 18 '11 at 17:20