Tagged Questions

10
votes
1answer
693 views

Why doesn't dynamic keyword work with dynamically loaded assemblies?

I'm working on a CSharp expression evaluator which can be used as you can see below. This component generates code and compiles it in memory and after that, it loads the generated assembly, creates an ...
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", ...
5
votes
1answer
161 views

Using dynamic in C# to access field of anonymous type - possible?

I've got a controller method: public JsonResult CalculateStuff(int coolArg) { if(calculatePossible) return Json(CoolMethod(coolArg)); else return Json(new { Calculated = false }); } ...
5
votes
6answers
493 views

C# - Disable Dynamic Keyword

Is there any way to disable the use of the "dynamic" keyword in .net 4? I thought the Code Analysis feature of VS2010 might have a rule to fail the build if the dynamic keyword is used but I ...
4
votes
3answers
333 views

Limitations of the dynamic type in C#

Could you give me some reasons for limitations of the dynamic type in C#? I read about them in "Pro C# 2010 and the .NET 4 platform". Here is an excerpt (if quoting books is illegal here, tell me and ...
4
votes
5answers
402 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 ...
2
votes
3answers
299 views

C# - Dynamic Keyword and Interface Implementations

I'm assuming this isn't possible but before digging further is there a way to do something like this: public void ProcessInterface(ISomeInterface obj) {} //... dynamic myDyn = ...
-4
votes
3answers
288 views

How can I create a sequence of numbered variables at run time?

Friends, I must create a series of ArrayLists, each containing objects of unknown origin, with each instance assigned to a separate local variable. So far, so good... But I also need each local ...