1
vote
3answers
65 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
…
48
votes
9answers
5k views
Wrapping StopWatch timing with a delegate or lambda?
I'm writing code like this, doing a little quick and dirty timing:
var sw = new Stopwatch();
sw.Start();
for (int i = 0; i < 1000; i++)
{
b = DoStuff(s);
}
sw.Stop();
…
1
vote
4answers
84 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
46 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
52 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
5answers
120 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 …
0
votes
1answer
11 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
138 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 …
-1
votes
3answers
55 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 …
0
votes
2answers
63 views
How to get a copy of the image from UIImagePicker
Hi,
I've got a very simple app where the user selects a UIImageView and presses a button to take a photo with the camera. The image is then returned and displayed in the UIImageView.
However, since …
0
votes
3answers
76 views
C# : Inheritance @ Delegates
Suppose I have code segment
namespace Test
{
public delegate void StaticticsDelegate(object sender,EventArgs e);
class DynamicDelegates
{
static void Main()
{
…
0
votes
0answers
99 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 class doesn't need to …
-1
votes
2answers
36 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:didStartProvisionalLoadForFrame:
…
1
vote
4answers
61 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); };
