If it is actually a TInterfaceDictionary you can write it like this:
type
TInterfaceDictionary = TObjectDictionary<TGUID, TObject>;
Obviously this requires a GUID for each interface to use.
Due to some compiler magic you can use it like quite simplesimply:
d.Add(ISomeInterface, TSomeImplementation.Create());
(Mason: sorry for hijacking the sample code)
