Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
3k views

Can Delegate.DynamicInvoke be avoided in this generic code?

This question is partly about delegates, and partly about generics. Given the simplified code: internal sealed class TypeDispatchProcessor { private readonly Dictionary<Type, Delegate> ...
3
votes
1answer
330 views

Callback functions: passing callbacks from a C# winform app to a referenced VC++ Exe

Asynchronous Callback Functions Perspective: I am upgrading several VB6 ActiveX applications to C#.net, which all talk to each other using callback functions which they register with a referenced ...
3
votes
1answer
515 views

Having problem dynamically invoking unmanaged VB COM dll from c#?

I have a problem calling unmanaged VB COM dll from c#. This is dynamic invocation using loadLibrary and GetProcAddress. I can successfully loaded the dll using loadLibrary , but the GetProcAddress ...
2
votes
2answers
533 views

Is there a way to do dynamic implicit type casting in C#?

Given this class with an implicit cast operator: public class MyDateTime { public static implicit operator MyDateTime(System.Int64 encoded) { return new MyDateTime(encoded); } ...
1
vote
2answers
213 views

alternative for using slow DynamicInvoke on muticast delegate

I have the following piece of code in a base-class: public static void InvokeExternal(Delegate d, object param, object sender) { if (d != null) { //Check each ...
1
vote
1answer
168 views

Method 'System.Object DynamicInvoke(System.Object[])' has no supported translation to SQL

Let's say that I have a table named Poll and I want to write a LINQ Extension to list all polls that have ID belong to an array. For e.g: void Main() { long[] ids = new long[]{ 1,2,3,4,5,6,7,8,9 ...
1
vote
2answers
282 views

Generating a Call Hierarchy for dynamicly invoked method

Today's world of dynamic invoke, reflection and runtime injection just doesn't play well with traditional tools such as ctags, doxygen and CDOC. I am searching for a method call hierarchy ...