In delphi I can declare a type of class like so
type
TFooClass = class of TFoo;
TFoo=class
end;
Which is the C# equivalent for this declaration?
|
|
|
The closest you can get in C# is the
It's not exactly the same. In Delphi, "type of othertype" is itself a type that you can assign to a variable. In C# "type of othertype" is a As an example, in Delphi, you can do this:
You cannot do anything like this in C#; you cannot call static methods of type A from instances of (Some specific patterns that Delphi metaclass types are used for, can be accomplished using generics:
In this case, T is the "type of A" or whatever derived class of A was used to construct the class.) |
|||||
|