Tagged Questions
The tdictionary tag has no wiki summary.
7
votes
2answers
219 views
How to create a custom enumerator for a class derived from TDictionary?
I have defined a collection derived from TDictionary, and need to define a custom enumerator that apply an additional filter.
I'm stuck as I can't access the TDictionary FItems array (it is private) ...
5
votes
1answer
1k views
How Can I List a TDictionary in Alphabetical Order by Key in Delphi 2009?
How can I use a TEnumerator to go through my TDictionary in sorted order by key?
I've got something like this:
var
Dic: TDictionary<string, string>;
Enum: TPair<string, ...
4
votes
1answer
217 views
How to get the key from a TDictionary?
I have a TDictionary<TKeyClass, TValueClass>.
I want to accomplish something like
for i := 0 to MyDictionary.Count -1 do
ShowMessage(MyDictionary.Keys[i].AStringProperty)
I cannot Access ...
1
vote
1answer
148 views
delphi scope of variables question
i fill a tdictionary , read from a file, to iterate over the key-value-pairs. iterating was solved in delphi dictionary iterating.
the problem is that the values in the dict are not kept, probably a ...
1
vote
1answer
608 views
delphi dictionary iterating
g'morning!
i fill a dictionary TDictionary<String, TStringlist> (delphi-collections-unit) with strings as values and several strings as values.
something like:
names = john, lisa, stan
...
1
vote
3answers
347 views
Equals and GetHashCode for TDictionary<TVehicle, TPerson>
If I implement a relationship Car <-> Owner in Delphi using a TDictionary, how should I implement the Equals and GetHashCode function of the IEqualityComparer? (GetHashCode returns an Integer which ...
1
vote
1answer
140 views
Default IEqualityComparer for TDictionary<TObject, TObject>?
I just read
"Any class that implements the
IEqualityComparer interface is
expected to provide the implementation
for the Equals method." - (Delphi
DocWiki)
and
"Any class that ...
1
vote
1answer
350 views
Delphi's TDictionary, my Value objects are inserting as null
I'm using Delphi 9's TDictionary generic class. My TDictionary looks like this:
g_FileHandlers : TDictionary<String, TList<String>>;
And, so I initialize the TDictionary like so:
...
1
vote
3answers
560 views
TDictionary - invalid key
I have code like this:
type
TMyDictionary = TDictionary<int, int>;
var
myDict: TMyDictionary;
k, v: integer;
// code to fill the dictionary
for k in myDict.Keys do
begin
v ...