3
votes
3answers
82 views
Writing my first DSL in C# and getting hung up on func<T> & Action
I'm taking a crack at writing my first DSL for a simple tool at work. I'm using the builder pattern to setup the complex parent object but am running into brick walls for building out the child …
4
votes
2answers
78 views
Return an empty collection when Linq where returns nothing
I am using the below statement with the intent of getting all of the machine objects from the MachineList collection (type IEnumerable) that have a MachineStatus of i. The MachineList collection will …
0
votes
5answers
331 views
PHP sandbox/sanitize code passed to create_function
Hello,
I am using create_function to run some user-code at server end. I am looking for any of these two:
Is there a way to sanitize the code passed to it to prevent something harmful from …
2
votes
3answers
158 views
C# lambda ref out
I'm trying to do this, but it doesn't work. Some suggestions?
int test_i = 0;
DoSomethingThatTakesAgesAndNeedsToUpdateUiWhenFinished(test_i);
test_i <- still is 0 and not 3!!!
public void …
49
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();
…
3
votes
3answers
324 views
How to write lambda methods in Objective-C ?
How to write lambda methods in Objective-C ?
0
votes
3answers
120 views
Convert Python to Haskell / Lambda calculus
What is the Python code in Haskell and Lambda calculus?
def f1():
x = 77
def f2():
print x
f2
f1
My attempt in lambda calculus
\x. 77 (\x.x)
7
votes
3answers
195 views
Passing a lambda to a secondary AppDomain as a stream of IL and assembling it back using DynamicMethod
Is it possible to pass a lambda expression to a secondary AppDomain as a stream of IL bytes and then assemble it back there using DynamicMethod so it can be called?
I'm not too sure this is the right …
0
votes
1answer
20 views
subsonic ActiveRecord: Lambda Parameter not in scope.
Hi
I am trying to delete list of albums from Album table. Following is the syntax but it fails saying "Lambda Parameter not in scope"
Album.Delete(x => (ListOfIds).Contains(x.Id));
What am I missing …
0
votes
0answers
49 views
Creating Func<…> and Action<…> lambda support for projects targeting .NET Framework 2.0 [closed]
Place the following in a core assembly:
public delegate TResult Func<TResult>();
public delegate TResult Func<T, TResult>(T arg1);
public delegate TResult Func<T1, T2, TResult>(T1 …
0
votes
1answer
90 views
Nested Lambdas in Python
Hi,
I'm a beginning python programmer, and I'd like someone to clarify the following behavior.
I have the following code:
env = lambda id: -1
def add(id, val, myenv):
return lambda x: val if x …
1
vote
1answer
101 views
Weak event handler model for use with lambdas
OK, so this is more of an answer than a question, but after asking this question, and pulling together the various bits from Dustin Campbell, Egor, and also one last tip from the …
0
votes
2answers
31 views
Use LINQ to omit some entries in the value part of a dictionary and project this into a new dictonary maintaing original keys.
Hi All,
I have a generic dictonary which is templated in the following manner:
Dictionary<object, IList<ISomeInterface>> dictionary1 = new Dictionary<object, …
1
vote
2answers
121 views
dynamically create lambdas expressions + linq + OrderByDescending
how can I create a dynamic lambda expression to pass to use in my orderby function inside linq? I basically want transform "queryResults.OrderByDescending();" in …
1
vote
2answers
42 views
Get the property name from delegate i => i.Name
Hi,
is there any way in .Net 2.0 to retrieve a property name from delegate?:
i => i.Name
When I call:
var property = MyMethod(i => i.Name);
I want MyMethod to return string "Name". So the value of …
