3
votes
3answers
38 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
65 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
5 views
Assign IBOutlet from appDelegate variable in an Array in a view Controller.
Hello Everyone,
I have what seams simple, but I just cannot get it to work.
I have a variable coming into a ViewController(presented by a modal view) and in the viewController I access the …
0
votes
3answers
14 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 …
0
votes
5answers
90 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"));
…
0
votes
1answer
127 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
…
1
vote
3answers
84 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
…
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
51 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 …
1
vote
3answers
53 views
C# 3.0 - Application of Monitor -Suggestions
In order to understand the Monitor I have implemented the following code.But I am not sure whether the code is Thread Safe.
namespace MonitorExample
{
public delegate void …
0
votes
1answer
14 views
combining flipsideview and navigationview
when i am trying to combine flipsideview and navigation view i am getting following error
"request for member 'delegate' is something not in a structure or union" on the line controller.delegate = …
1
vote
4answers
150 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 …
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
votes
3answers
64 views
What is Delegate and Delegate Methods
Guys anyone please let me know difference between Delegate & Delegate Methods and its differences and its usages ???
0
votes
1answer
48 views
Objective C/Cocoa delegate question
I have read and understand the answer given in this question:
http://stackoverflow.com/questions/626898/how-do-i-create-delegates-in-objective-c
However, I wish to set a delegate to my main …
