0
votes
1answer
65 views
C# - Delegate with ref parameter
Is there any way to maintain the same functionality in the code below, but without having to create the delegate? I'm interfacing with a 3rd-party API that contains a number of various …
0
votes
3answers
107 views
Using Delegates in C# Asynchronously
I have the following delegate
delegate void UpdateFileDelegate(long maxFileID);
That I am calling from a WinForms app like so
UpdateFileDelegate FD = new …
3
votes
3answers
105 views
How to accept ANY delegate as a parameter
I am interested in writing a method that would accept another method as a parameter but do not want to be locked into a specific signature - because I don't care about that. I am only interested …
1
vote
3answers
35 views
ObjC delegate methods never gets called
Hi all,
I am creating instances of a class FlickrImage parsing a Flickr API photos response. The class has a method getLocation that does another API call to get the geolocation:
NSLog(@"getting …
0
votes
3answers
42 views
Providing multiple instances of a form yet processing events one at a time
I need to be able to let multiple instances of the same form be open as my application can be used in different places at once. On the other hand i need to be able to process the operations during the …
3
votes
3answers
55 views
Defining event handlers
I can define an event like this(declared function):
MyElement.Keyup +=MyDeclaredFunction
I can also define it like this(anonymous delegate):
MyElement.Keyup+=new delegate(object sender, eventargs …
3
votes
2answers
70 views
A method that executes any time a class property is accessed (get or set) ?
C# - .net 3.5
I have a family of classes that inherit from the same base class.
I want a method in the base class to be invoked any time a property in a derrived class is accessed (get or set). …
0
votes
1answer
134 views
When is it better practice to explicitly use the delegate keyword instead of a lambda?
Is there any best practice with respect to coding style with respect to explicit use of the delegate keyword instead of using a lambda?
e.g.
new Thread(() =>
{
// work item 1
// work item 2
…
0
votes
5answers
94 views
C# Case insensitive comparision
How to implement case insensitive comparison?
List<Person> persons = new List<Person>();
persons.Add(new Person("P005", "Janson"));
persons.Add(new Person("P002", "Arnold"));
…
1
vote
3answers
89 views
C# Func delegate
I am adding range of integers (101,105) using Func<> delegate.I suppose to get 101,102,..105 as output while executing the following.But I am getting 204,204,.....
What went wrong?
class MainClass
…
0
votes
3answers
17 views
How to implement automatic properties in VS 2005 for a delegate callback
I'm attempting to get the TwainDotNet solution I found here (http://stackoverflow.com/questions/476084/c-twain-interaction) to compile, and I'm at my wits end.
This solution was obviously developed …
1
vote
4answers
100 views
Array of function pointers in C#
Hello
There is a set of methods like:
Foo(int, float, params objects[])
Goo(int, params objects[])
Too()
each taking different number of & type of parameters (so are return values).
I …
1
vote
2answers
56 views
Memory Leak on BeginInvoke
1) I heard that when we won't call EndInvoke() it may lead to memory leak? can you demonstrate it how could this lead to memory leak?
2) When i suppose to call EndInvoke() shall i use the code like …
0
votes
5answers
126 views
Generic method with Action<T> parameter
So, I'm sure this has been answered somewhere out there before, but I couldn't find it anywhere. Hoping some generics guru can help.
public interface IAnimal{}
public class …
1
vote
4answers
152 views
Delegates, can’t get my head around them
Hey, I'm looking for useful resources about Delegates. I understand that the delegate sits in the background and receives messages when certain things happen - e.g. a table cell is selected, or data …
