Advertisement
econz

Delphi - Enumerators

Apr 12th, 2012
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.25 KB | None | 0 0
  1.  type
  2.    TSuit = (Hearts, Diamonds, Clubs, Spades);   // Declaração do tipo
  3.  var
  4.    suit : TSuit;                                // Definição de uma variável do tipo
  5.  begin
  6.    suit := Clubs;                               // Setando valores
  7.  end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement