vote up 4 vote down star

Hello, I am migrating an application written in Delphi 2007 .Net to Delphi Prism, which is the best option to replace the TStringList and TStrings class?

Thanks in advance.

Bye.

flag

what features of a tstringlist are you wanting to emulate? – Argalatyr Sep 5 at 4:14
Argalatyr, the features i'm looking are Add(),Clear(),IndexOf(),LoadFromFile(),SaveToFile(). – Salvador Sep 5 at 5:36

3 Answers

vote up 7 vote down check

Just use the built in List types in the .NET framework, or the StringCollection.

The easiest are the generic lists:

List<String>

But StringCollection has a few bits that the List does not have; you can read a bit about that in this thread.

The advantage of using built-in .NET Framework classes, is that there is plenty documentation at MSDN, have loads of examples (for instance atCodeProject), and usually support more features (like implementing required interfaces to do data binding and such: the TStringList in ShineOn does not do that).

The advantage of using VCL like things is that you are more familiar with the VCL so it gets you started quicker. But there is a reason why VCL.NET has not been developed further...

Janka Janos has a great comparison chart of features in C# and Delphi Prism. That will help you translate C# examples into Delphi Prism code.

--jeroen

link|flag
vote up 6 vote down

Have you looked at ShineOn? It has a Classes.pas with TStringList in it.

link|flag
vote up 0 vote down

I have used Collections.Specialized.HybridDictionary (and similar) classes in the little bit of C# I have done. As it is a standard .net object it should be available in Prism.

I don't know if it has a LoadFrom/Save to file though

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.