Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# read binary file

BinaryReader reader = new BinaryReader(File.Open(filePath, FileMode.Open));
string fileContentInBin = reader.ReadString();
reader.Dispose();
 
PREVIOUS NEXT
Tagged: #read #binary #file
ADD COMMENT
Topic
Name
4+6 =