0
votes
7answers
300 views
c expression Evaluator
Okay lets say I have a string such as this in a text file:
((( var1 AND var2 AND var3) OR var4) AND ((var5 OR var6) AND var7))
after parsing this into the c program and the vars …
0
votes
1answer
18 views
Nhiberate Criterion Expression Combining “ands” and “ors”
I am having a little trouble with building my criteria object. Normally, I Build my cruteria similarly to this:
ISession session = GetSession();
ICriteria criteria = session.Crea …
17
votes
4answers
207 views
Curiosity: Why does Expression<…> when compiled run faster than a minimal DynamicMethod?
I'm currently doing some last-measure optimizations, mostly for fun and learning, and discovered something that left me with a couple of questions.
First, the questions:
When I …
1
vote
0answers
53 views
Is there a C# Expression Evaluation engine? [closed]
Possible Duplicate:
Dynamic logical expression parsing/evaluation in C# or VB?
I'm writing an application where I have to parse expression on certain types of variables. …
0
votes
4answers
78 views
Converting a Scheme expression to a string
Given an expression '(lambda (x) x) How can I translate this into a string. I thought symbol->string will do the job but no it cant not a symbol.
e.g for a macro to-string:
(to- …
0
votes
1answer
22 views
PHP, Eclipse/Zend Studio & Debugging with expressions
Hi,
I have a variable in my PHP application that changes often, I'd like to debug so that it keeps executing until the variable changes to a specific value (in this case boolean t …
0
votes
1answer
55 views
Need help creating Linq.Expression to Enumerable.GroupBy
I am attempting to generate an Expression tree that ultimately calls a series of GroupBy methods on the Enumerable type.
In simplified form I am attempting something like this:
I …
0
votes
2answers
74 views
c expression evaluator take 2
In reference to the accepted solution in: SO:expression_evaluator
Can anyone provide a version that works with negation as well? things like
((!(0 or !1) and !((0 or 1 or 1) and …
0
votes
1answer
20 views
PHP Debugging with Expressions?
Hi,
I am new to debugging and I'm very interested in knowing how to setup expressions in debugging environment. For example, if I want to see when a variable $a changes it value t …
5
votes
4answers
133 views
Are named functions underrated in JavaScript?
Taking the jQuery framework for example, if you run code like this:
$(document).ready(function init() { foo.bar(); });
The stack trace you get in Firebug will look like this:
i …
2
votes
5answers
186 views
What does `x ?? y` mean? [closed]
Possible Duplicates:
?? Operator in C#
What do two question marks together mean in C#?
What does the expression
x ?? y
mean?
This is an exact duplicate (although if …
1
vote
2answers
84 views
Subsonic 2.2 - Update with expresssion - how to make my solution better?
Hi,
I'm learning SubSonic 2.2, and have the following query, but it feels "Wrong" writing my expression ("count + 1") as a string.
Can any experts suggest a better way that this? …
0
votes
0answers
51 views
Unit testing with Expressions?
Hi All,
I am unit testing some code that interactes with a repository, that takes an expression (Expression<Func<Entity, bool>>) to filter the results, like so:
int o …
2
votes
2answers
158 views
C#, create (method?) expression and call it …
I'm realtively new to c# expression. I have some class something like that
class SimpleClass
{
private string ReturnString(string InputString)
{
return "result is: …
1
vote
4answers
113 views
C# expression evaluates to a namespace
MSDN docs state "An expression is a fragment of code that can be evaluated to a single value, object, method, or namespace."
Could someone please explain what it means for an expr …
