1.5

Table Of Contents
Examples
NewStringArray()
Function that returns a new string array.
NewStringArray(size)
Returns a new string array of size elements.
size
Integer that represents the number of elements in the new array.
Examples
OpenBinaryReader()
Function that opens a file as a binary file for reading purposes.
OpenBinaryReader(filename)
Opens filename as a binary file for reading purposes. The function returns a BinaryReader
object.
filename
String that represents the name of the file to open.
Examples
OpenBinaryWriter()
Function that opens a file as a binary file for writing purposes.
OpenBinaryWriter(filename, append)
Opens filename as a binary file for writing purposes. The append Boolean parameter specifies
whether the file pointer should initially be positioned at the end of the existing file (append
mode) or at the beginning of the file (overwrite mode). The function returns a BinaryWriter
object.
filename
String that represents the name of the file to open.
Page 234