Tagged Questions
10
votes
6answers
1k views
dynamic, How to test if a property is available
Scenario is very simple
somewhere in the code I have this
dynamic myVariable = GetDataThatLooksVerySimilarButNotTheSame();
//how to do this?
if (myVariable.MyProperty.Exists)
//Do stuff
So ...
6
votes
3answers
1k views
C# Using the Dynamic keyword to access properties via strings without reflection
I would like to write something similar to the following:
// I will pass in a number of "properties" specified as strings that I want modified
string[] properties = new [] { "AllowEdit", ...
4
votes
5answers
399 views
Is the dynamic keyword meant to be *only* used with dynamic languages?
I attended Code Camp 12 recently, and a speaker there said that the new dynamic keyword in C# 4.0 should only be used for interopping with dynamic languages. I think he also said that it is somewhat ...