The .NET 'Type' class alternative in Delphi - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T00:11:48Zhttp://stackoverflow.com/feeds/question/1032170http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1032170/the-net-type-class-alternative-in-delphi4The .NET 'Type' class alternative in DelphiHristo2009-06-23T12:09:18Z2009-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<Type, Object> d = new Dictionary<Type, Object>();
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#10323128Answer by Mason Wheeler for The .NET 'Type' class alternative in DelphiMason Wheeler2009-06-23T12:40:13Z2009-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<PTypeInfo, TObject>;
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#10324176Answer by Uwe Raabe for The .NET 'Type' class alternative in DelphiUwe Raabe2009-06-23T12:57:47Z2009-06-23T16:10:08Z<p>If it is actually a TInterfaceDictionary you can write it like this:</p>
<pre><code>type
TInterfaceDictionary = TObjectDictionary<TGUID, TObject>;
</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>