6
votes
3answers
107 views
What is the difference between a delegate instance and a method pointer?
I thought that a delegate instance was interchangeable with a function instance.
Take the following code:
delegate int AddDelegate(int a, int b);
AddDelegate DelegateInstance;
…
1
vote
2answers
73 views
invoking delegate with generics arguments in c#
I have a class:
public class MyClass<T>
{
public string TestProperty { get; set; }
}
and I want to create a delegate to run on instances of this class, such as:
Actio …
2
votes
4answers
44 views
How to know when a UserControl has finished firing an Event?
we have a UserControl to handle User cancellations, that is used in a few places. This has a couple of input fields and a submission button. When they submit the User's status is u …
0
votes
1answer
35 views
Delegates And WCF Methods
Hi.
I have successfully designed a large file upload method using WCF.
Now, I would like to report progress for each unique file being loaded.
In my upload method, i have the f …
0
votes
2answers
31 views
delegate parameter from another class
Hi:
In c or c++ we can use function pointer as a parameter to another function like this:
int example(FUNPTR a)
{
/* call the function inside */
a();
}
And I also know that …
0
votes
4answers
42 views
Asynchronous runtime method invocation
I am loading some assemblies at run time and invoking methods on them using Reflections (MethodInfo.Invoke).
Now I want to make these calls asynchronous. So I am thinking of using …
0
votes
2answers
41 views
iPhone: Get Response From Finished Request [ASIHttpRequest]
Hello all.
I am attempting to use ASIHttpRequest with the iPhone to get some information from a query-string based API on my site.
Currently, I am in the planning stages of my d …
6
votes
4answers
177 views
Problem with delegates in C#
In the following program, DummyMethod always print 5. But if we use the commented code instead, we get different values (i.e. 1, 2, 3, 4). Can anybody please explain why this is ha …
7
votes
3answers
104 views
Why are delegates null rather than an empty list when there is no subscriber?
Can somebody explain why the .Net framework team decided that a delegate without subscribers should be null instead of an object with an empty InvocationList? I'd like to know the …
0
votes
4answers
135 views
Simple Delegate. what’s wrong is my code?
class SimpleDelegate
{
public delegate void LogHandler(string message);
public void Process(LogHandler logHandler)
{
if (logHandler != null …
0
votes
1answer
23 views
Present Navigation Table View modally, who is the delegate?
Basically I have a hierarchy of locations: country, state/prov, city.
I want to present an "Add Location" modal table using a delegate.
I realize the best way to do this is to p …
3
votes
3answers
46 views
Passing Delegate object to method with Func<> parameter.
I have a method Foo4 that accepts a parameter of the type Func<>. If I pass a parameter of anonymous type , I get no error. But if I create and pass an object of the type 'deleg …
2
votes
2answers
61 views
Create a delegate of a generic function
I'm writing some unit tests and I have a lot of functions of the form
public void SomeTestHelperMethod<TKey, TValue>(TKey key, TValue value)
which I'm calling repeatedly w …
0
votes
5answers
141 views
C# Question: Delegates
I've been searching the Web, including MSDN.com for a easy-to-understand explanation of delegates in c#. There's plenty of tutorials/lessons...but its a hard concept for me to gra …
8
votes
6answers
184 views
a constructor as a delegate - is it possible in C#?
I have a class like below:
class Foo
{
public Foo(int x) { ... }
}
and I need to pass to a certain method a delegate like this:
delegate Foo FooGenerator(int x);
Is it poss …
