DELPHI.PAS to ASPX.CS C# - Record
Delphi:
TColor = record
Red: integer;
Green: integer;
Blue: integer;
end;
C#:
struct TColor
{
public int Red;
public int Green;
public int Blue;
}
Delphi:
TColor = record
Red: integer;
Green: integer;
Blue: integer;
end;
C#:
struct TColor
{
public int Red;
public int Green;
public int Blue;
}
{moscomment}
| < Prev |
|---|





