show/hide this revision's text 2 edited tags
show/hide this revision's text 1

The .NET 'Type' class alternative in Delphi

I want to write in Delphi (2009 - so I have generic dictionary class) something similar to that C# code:

Dictionary<Type, Object> d = new Dictionary<Type, Object>();
d.Add(typeof(ISomeInterface), new SomeImplementation());
object myObject = d[typeof(ISomeInterface)];

Any ideas?

Thanks in advance,

Hristo