Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
675 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
2answers
1k views

C# 4.0 Dynamic vs Expando… where do they fit?

I am trying to learn all the new goodies that come with C# 4.0. I am failing to understand the differences between the Dynamic and Expando types. From the looks of things it seems like Dynamic is when ...
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
152 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
482 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
325 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
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 ...
2
votes
3answers
291 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 = ...
1
vote
2answers
114 views

Javascript auto pick keywords from HTML

Given a body of HTML, is there any function out there someone has written that will automatically extract say the top 10 keywords that appear from a chunk of HTML, excluding any HTML tags (IE just ...
0
votes
0answers
21 views

ios how to get NSPredicate to work

I can not get NSPredicate to work, see my code below if (![InstalledUApp isInstalled:uApp inManagedContext:ctx]) { iuapp = [NSEntityDescription insertNewObjectForEntityForName:@"InstalledUApp" ...
-4
votes
3answers
264 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 ...