You are familiar with this block:
Var
mySet: Set Of Char;
C: Char;
begin
mySet := ['a', 'b', 'c'];
If C In mySet Then ShowMessage('Exists');
end;
Is there any way to declare Set Of STRING
? or is there similar code that i can use instead? The important part of this block is If C In mySet Then ShowMessage('Exists');
I wanna use something like this about a set of string.
Thanks.