I am working with Delphi Prism and creating and writing into binary file using BinaryWriter as follows.
method TUnit.Write(bw:BinaryWriter);
var
i:Integer;
begin
bw.write(ord(uType));
bw.Write(ord(State));
bw.Write(Address);
bw.Write(SubAddress);
for i:=1 to 20 do
bw.Write(fDefs[i]);
end;
My question to you is this. Does the write method write line per line or bytes after bytes or character after character without line feed or carriage return?
The reason I am asking this question is because I am confused when it comes to writing and reading string without specific numbers of characters like array of characters.
For instance:
method WritetoFile;
var
x:integer;
thestr:string;
begin
BinaryWriter thefile := new BinaryWriter(File.Create("test.dat"));
thefile.write(thestr);
thefile.write(x);
thefile.Close;
end;
method ReadFromFile;
var
x:integer;
thestr:string;
begin
BinaryReader thefile := new BinaryReader(File.OpenRead("test.dat"));
thestr:=thefile.ReadString;
x:=thefile.ReadInt32;
thefile.Close;
end;
That's how I wrote my program and it seems to work fine, but as I said I am confused.
How does it know how many bytes or characters length to read or write when it is a string data type without giving it a specific numbers of length to read?