I desperately need this. If there is no string list, could you please add it to the new version?
Thanks
Is there a StringList object in fnxbasic?
Is there a StringList object in fnxbasic?
What do you mean by "String list"?
Can`t you use a string array?
Can`t you use a string array?
Re: Is there a StringList object in fnxbasic?
A StringList is not simply a list of strings. The term derives from the VCL library of Delphi/C++ Builder (hence also the LCL library of Lazarus). There it is a class TStringList which provides a wealth of additional support facilities in the form of Properties, Methods and Events. A large part of the reason for using TStringList is to access those facilities. A string array gives you absolutely none of that.
Re: Is there a StringList object in fnxbasic?
The StringList object is a collection of strings. The client must verify that the StringList object exists and is not empty before.Lets start with a sample-line, where we get an array of objects with different attributes. Here we are getting the first 10 running processes with all detailed.The OwnsObjects property of TStringList should be set to True in order for the list to free its objects when being destroyed https://technoburst.com/.