M
MyName
Here's a Delphi example....
type UserStats = Record
bestcompleted := int;
bestAverage := real;
BestPercentage := string;
end;
var
stats : file of UserStats;
How Do I do the above in VB .Net?
How would I Read from, and write to the file?
type UserStats = Record
bestcompleted := int;
bestAverage := real;
BestPercentage := string;
end;
var
stats : file of UserStats;
How Do I do the above in VB .Net?
How would I Read from, and write to the file?