what is the difference in using a standard
type sl: TStringList
compared to using a generic TList
type sl: TList<string>
?
As far as I can see, both behave exactly the same.
Is it just another way of doing the same thing?
Are there situations where one would be better than the other?
Thanks!
1 Answer