6
votes
6answers
210 views
ok, this worked. what is it exactly?
I just lifted this snippet from a website and it proved to be exactly the solution I needed for my particular problem.
But I have no idea what it is (particularly the delegate an …
4
votes
3answers
142 views
Why is an out parameter not allowed within an anonymous method?
This is not a dupe of Calling a method with ref or out parameters from an anonymous method
I am wondering why out parameters are not allowed within anonymous methods. Not allowin …
2
votes
1answer
66 views
Serializing a list of anonymous delegates.
This question may be very similar to my one, but I cannot see the answer I need in it. I have a class, called CASM, that has a List<Action>. I want to serialize this class (u …
3
votes
2answers
93 views
How do lambda expressions work internally?
While looking up the answer to this question: "Why is an out parameter not allowed within an anonymous method?" I've got a little lost about how do lambda expression and anonymous …
3
votes
3answers
57 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 …
6
votes
10answers
321 views
How do you use Func<> and Action<> when designing applications?
All the examples I can find about Func<> and Action<> are simple as in the one below where you see how they technically work but I would like to see them used in examples whe …
4
votes
5answers
186 views
Create anonymous method from a string in c#
is it possible to create an anonymous method in c# from a string?
e.g. if I have a string "x + y * z" is it possible to turn this into some sort of method/lambda object that I can …
0
votes
2answers
44 views
ASP.NET Delegates and Expressions -Information Request
Based on my understanding , i interpret the meaning of Func delegate as follows.Please correct them as and when it is needed.
Declaration : Func<int> dg ;
1. Could i inter …
3
votes
8answers
253 views
Anonymous methods/functions: a fundamental feature or a violation of OO principles?
Is the recent movement towards anonymous methods/functions by mainstream languages like C++ and C# something important, or a weird feature that violates OO principles?
Are recent …
1
vote
4answers
155 views
Premature string destruction and how to avoid it?
Hi! I'm using Delphi 2009 and get some strange errors using the following code segment:
var
Str : AnsiString;
CharPtr : PAnsiChar;
...
CharPtr := PAnsiChar (Str);
ExecuteI …
0
votes
3answers
68 views
PHP Import Foreign Class’ Method into MyClass
Wondering if this is possible in PHP Land:
Let's say I have a class as follows:
class myClass{
var $myVar;
...
myMethod(){
$this->myVar = 10;
}
}
and another …
6
votes
5answers
218 views
Creating two delegate instances to the same anonymous method are not equal
Consider the following example code:
static void Main(string[] args)
{
bool same = CreateDelegate(1) == CreateDelegate(1);
}
private static Action CreateDelegate(int x)
{
r …
11
votes
4answers
353 views
In C#, why can’t an anonymous method contain a yield statement?
I thought it would be nice to do something like this (with the lambda doing a yield return):
public IList<T> Find<T>(Expression<Func<T, bool>> expression) …
5
votes
5answers
278 views
How do I Unregister ‘anonymous’ event handler
Say if I listen for an event:
Subject.NewEvent += delegate(object sender, NewEventArgs e)
{
//some code
});
Now how do I un-register this event? Or just allow the memory to …
0
votes
3answers
267 views
C# - anonymous functions and event handlers question
Hi Guys,
I have the following code:
public List<IWFResourceInstance> FindStepsByType(IWFResource res)
{
List<IWFResourceInstance> retval = ne …
