How to convert Delphi Record to C#?

Joined
Mar 12, 2010
Messages
1
Reaction score
0
I have a problem in that I need to update some old code from Delphi 4 (1997) to C# .NET.

The following is a Delphi record array.

type
TMyJob = record
ReceiveDate: string[10];
JobName: string[150];
Contractor: string[100];
AssignDate: string[10];
DetailerName: string[30];
end;

Jobs: array of TMyJob;


The program that I'm trying to update (rewrite) is loading array's from a file stored on the computer. Since it was done in Delphi I'm not having much luck getting these to load properly.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top