Code:
var ByteSet: set of Byte;
begin
Include(ByteSet, 1);
Include(ByteSet, 3);
ByteSet := ByteSet + [5];
ByteSet := ByteSet + [7];
if 4 in ByteSet then
// ...
end;
Ob Du Include() oder den Plus-Operator nimmst, ist egal. Worauf Du allerdings achten musst, ist, dass Sets nur Werte im Bereich von 0 bis 255 enthalten dürfen.
jkr