I am sure this is a easy question, but I cannot get it to run:
var
FMyList: TList<String>;
begin
FMyList := TList<String>.Create(?????);
end;
How to insert instead of ????? to insert this 3 strings:
'one'
'two'
'three'
Thanks..
Not a one liner, but a two liner:
FMyList := TList<String>.Create;
FMyList.AddRange(['one', 'two', 'three']);
Edit: Of course you can combine it with David's approach.
There is no single method to do this. You could write your own constructor to do this as so:
constructor TMyList<T>.Create(const Values: array of T);
var
Value: T;
begin
inherited Create;
for Value in Values do
Add(Value);
end;
Then you could write:
FList := TMyList<string>.Create(['one', 'two', 'three']);
Update
As Uwe correctly points out in his answer, the code I present should use the AddRange()
method:
constructor TMyList<T>.Create(const Values: array of T);
begin
inherited Create;
AddRange(Values);
end;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With