7
votes
Testing if an Object is a Dictionary in C#
Check to see if it implements IDictionary.
See the definition of System.Collections.IDictionary to see what that gives you.
if (listBox.ItemsSource is IDictionary)
{
Dic …
2
votes
Create anonymous object by Reflection in C#
Here is another way, seems more direct.
object anon = Activator.CreateInstance(existingObject.GetType());
…
0
votes
Get class property name
You can reflect a Type, but you can't reflect its members except by name.
If that were the only property, or you knew for certain the ordering you could find it by index, but generally spea …
0
votes
ASP.Net and GetType()
page.GetType().BaseType, it has been said before, but let me elaborate as to why.
Aspx pages inherit from their code-behind pages, meaning that the inheritance hierarchy looks like this: …
