The .NET 'Type' class alternative in Delphi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T00:11:48Z http://stackoverflow.com/feeds/question/1032170 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1032170/the-net-type-class-alternative-in-delphi 4 The .NET 'Type' class alternative in Delphi Hristo 2009-06-23T12:09:18Z 2009-06-23T16:10:08Z <p>I want to write in Delphi (2009 - so I have generic dictionary class) something similar to that C# code:</p> <pre><code>Dictionary&lt;Type, Object&gt; d = new Dictionary&lt;Type, Object&gt;(); d.Add(typeof(ISomeInterface), new SomeImplementation()); object myObject = d[typeof(ISomeInterface)]; </code></pre> <p>Any ideas?</p> <p>Thanks in advance,</p> <p>Hristo</p> http://stackoverflow.com/questions/1032170/the-net-type-class-alternative-in-delphi/1032312#1032312 8 Answer by Mason Wheeler for The .NET 'Type' class alternative in Delphi Mason Wheeler 2009-06-23T12:40:13Z 2009-06-23T13:15:58Z <p>For interfaces, you'll want to use a PTypeInfo pointer, which is returned by the compiler magic function TypeInfo. PTypeInfo is declared in the TypInfo unit.</p> <pre><code>type TInterfaceDictionary = TObjectDictionary&lt;PTypeInfo, TObject&gt;; var d: TInterfaceDictionary; myObject: TSomeImplementation; begin d := TInterfaceDictionary.Create([doOwnsValues]); d.Add(TypeInfo(ISomeInterface), TSomeImplementation.Create()); myObject = d[TypeInfo(ISomeInterface)]; end; </code></pre> <p>Of course, if this was classes instead of interfaces, you could just use a TClass reference.</p> http://stackoverflow.com/questions/1032170/the-net-type-class-alternative-in-delphi/1032417#1032417 6 Answer by Uwe Raabe for The .NET 'Type' class alternative in Delphi Uwe Raabe 2009-06-23T12:57:47Z 2009-06-23T16:10:08Z <p>If it is actually a TInterfaceDictionary you can write it like this:</p> <pre><code>type TInterfaceDictionary = TObjectDictionary&lt;TGUID, TObject&gt;; </code></pre> <p>Obviously this requires a GUID for each interface to use.</p> <p>Due to some compiler magic you can use it quite simply:</p> <pre><code> d.Add(ISomeInterface, TSomeImplementation.Create()); </code></pre> <p>(Mason: sorry for hijacking the sample code)</p>