Tagged Questions

5
votes
3answers
1k views

DLR return type

I need some DLR help. I am implementing an IDynamicMetaObjectProvider and DynamicMetaObject but I am having some issues getting the expected return type. I am overiding BindInvokeMember in the ...
5
votes
4answers
1k views

How do I use a common log4net reference in assemblies loaded at runtime?

I have a single-threaded application that loads several assemblies at runtime using the following: objDLL = Assembly.LoadFrom(strDLLs[i]); I would like the assemblies loaded in this manner to use ...
2
votes
4answers
313 views

Why do some languages prefer static method binding rather than dynamic? [closed]

Why is the default decision in C++, C#, and Ada 95 to use static method binding, rather than dynamic method binding.? Is the gain in implementation speed worth the loss in abstraction and ...
0
votes
1answer
53 views

How to do dynamic binding for elements which use converter?

I am developing silverlight web part using client object model. I have one converter in my project as follows public class ForeGroundConverter : IValueConverter { public ...