IW1QLH

  • Increase font size
  • Default font size
  • Decrease font size

Delphi to C#: Record

E-mail Print PDF
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;
}


{moscomment}

Last Updated on Friday, 27 October 2006 16:00