0
votes
3answers
71 views
C# : Inheritance @ Delegates
Suppose I have code segment
namespace Test
{
public delegate void StaticticsDelegate(object sender,EventArgs e);
class DynamicDelegates
{
static void Main() …
1
vote
6answers
157 views
C# - Anonymous delegate
Like Anonymous Methods ,the delegates i am declaring down using "delegate" keyword are anonymous delegates?
namespace Test
{
public delegate void MyDelegate();
class Progr …
1
vote
4answers
60 views
C# -Delegates Execution -Help
Since Func<> delegates does not take "void" how could i acieve the following in C# 3.0
Func<int, int, void> delg = (a, b) => { Console.WriteLine( a + b); };
0
votes
0answers
80 views
[review?] C++ selectors and method delegates
Hi, I just wrote this for handling method selectors in C++ in an Objective-C way.
I can see some advantages over derivating you class from an IObserver abstract class:
— Client cl …
-1
votes
2answers
33 views
which delegate method will be invoked when click the tab of safari?
As we know , When we load frame from webpage of safari, we will invoke the delegate methods of webkit informal protocol(WebFrameLoadDelegate):
webView:didStartProvisionalLoadForFr …
1
vote
2answers
58 views
C# -Delegate -Compiler treatment
If i declare a delegate
public delegate void firstDelegate(string str);
firstDelegate handler = Strfunc;
handler("Hello World");
..
static void Strfunc(string str)
{
…
2
votes
4answers
123 views
Delegates in C#
Hello guys.
I`m having some trouble to understand why does a delegate works. I have many code examples, but i still could not grasp it properly.
Can someone explain it to me in " …
1
vote
4answers
60 views
Does a reference to a delegate constitute a reference to an object (to prevent garbage collection)?
I had trouble coming up with a good way to word this question, so let me try to explain by example:
Suppose I have some interface. For simplicity's sake, I'll say the interface is …
2
votes
1answer
137 views
when to use or not Lambda Expressions.
I see lambda expressions have become a very useful tool at some points in the language. I've been using them a lot and most of the time they fit really nice and make the code short …
0
votes
2answers
94 views
Why does asynchronous delegate method require calling EndInvoke?
Why does the delegate need to call the EndInvoke before the method fires? If i need to call the EndInvoke (which blocks the thread) then its not really an asynchronous call is it? …
2
votes
2answers
72 views
Func<> delegate - clarification
When an array is given:
int[] a={1,3,4,5,67,8,899,56,12,33}
and if i wish to return the even numbers
using LINQ
var q=a.where(p=>p%2==0)
if i were to use C#2.0 and strict …
0
votes
2answers
32 views
UIAccelerometer doesn’t send events to second delegate
I am developing a game that uses a different controller for each level. It needs to detect a shake via the accelerometer, so it registers itself as a delegate like so:
UIAccelero …
0
votes
2answers
83 views
Delegates in c# [closed]
Possible Duplicates:
C# Question: Delegates
What is a good C# Delegates Tutorial
Hi, can somebody give me a simple example how to implement delegates in c#? and what is …
2
votes
2answers
72 views
c# / LINQ: FUNC (delegate) extending to contain more than the MAX 4 params?
Hi there,
I have been using LINQ with compiledqueries... so basically passing into the compile query using FUNC but the problem is that it has a maximun of 4 params.
I need to ex …
0
votes
2answers
57 views
How can i do this with the C# ‘new Process’ object.
Hi folks,
I wish to pass some data to the delegate method, of a Process object, when it fires the Exited event --- i'm not sure how.
I've got some code (in a windows service) t …
