Read binary data from a file.

 

   
Syntax
 
     

[Visual Basic]
Function Read(inFile As String) As Byte()

[C#]
byte[] Read(string inFile);

 

   
Params
 
     
Name   Description
inFile The path to the file to be read
return The data held as an array of bytes

 

   
Notes
 
     

Use this function to read binary data from a file. The raw data is returned as an array of bytes.

 

   
See Also
 
     

Gestalt Save function.