In C# 3.0, is it possible to determine whether an instance of Type represents an Anonymous Type?
|
|
|
|||
|
|
|
|
Even though an anonymous type is an ordinary type, you can use some heuristics:
Another good heuristic to be used is if the class name is a valid C# name (anonymous type are generated with no valid C# class names - use regular expression for this). |
|||
|
|
|
In methadata and CLR there is no such terms as anonymous types. Anonymous types are solely compiler feature. |
||
|
|
|
|
Might be helpful to know why you want to know this. If you execute the following:
...you would see something like "<>f__AnonymousType0`1" output as the type name. Depending on your requirements, you may be able to assume that a type starting with <>, containing "AnonymousType" and a back quote character is what you're looking for. |
||||||
|
|
|
There is no C# language construct which allows you to say "Is this an anonymous type". You can use a simple heuristic to approximate if a type is an anonymous type, but it's possible to get tricked by people hand coding IL, or using a language where such characters as > and < are valid in identifiers.
|
||
|
|
|
|
It seems anonymous types get a Edit: But only when you compile in Debug mode. Darn. |
||
|
