Tagged Questions

12
votes
1answer
286 views

Irony: How to give KeyTerm precedence over variable?

Relevant chunk of Irony grammar: var VARIABLE = new RegexBasedTerminal("variable", @"(?-i)\$?\w+"); variable.Rule = VARIABLE; tag_blk.Rule = html_tag_kw + attr_args_opt + block; term_simple.Rule = ...
9
votes
6answers
908 views

int[] arr={0}; int value = arr[arr[0]++]; Value = 1?

Today I came a cross an article by Eric Lippert where he was trying to clear the myth between the operators precedence and the order of evaluation. At the end there were two code snippets that got me ...
6
votes
1answer
447 views

why does *p++ = *p - a give strange results?

While working with large arrays, I am doing unsafe pointer computations like the following: *c++ = *a++ - *b++; It works as expected. But for inplace operations, I need the c pointer on the right ...
6
votes
8answers
2k views

C# conditional AND (&&) OR (||) precedence

We get into unnecessary coding arguments at my work all-the-time. Today I asked if conditional AND (&&) or OR (||) had higher precedence. One of my coworkers insisted that they had the same ...
5
votes
7answers
267 views

Operator precedence in C#

Is (int)(int1 / (float)var2.Count() * 100) equivalent to (int)((int1 / (float)var2.Count()) * 100) ...and will it use floating point or integer division? Edit... if the answer is yes to the ...
4
votes
1answer
220 views

Lambda expression oddity

Long story short. I have 2 lists which contain the same type (but are used for different things) and I want to know if EITHER list contains an item with a certain name. My original code, which worked ...
3
votes
3answers
183 views

Testing for null reference always returns false… even when null

If I compile the following code snippet with Visual C# 2010 I ALWAYS get false: object o = null; Console.WriteLine("Is null: " + o == null); // returns false Does anybody know why???
3
votes
4answers
209 views

Operator precedence

Consider this C# class: class Node { public Node Next; } And consider these 2 cases: Node A = new Node(); Node B = A; B=(B.Next = new Node()); and Node A = ...
2
votes
8answers
6k views

OR operator in C#

Can I achieve if (a == "b" || "c") instead of if (a == "b" || a== "c") ?
0
votes
2answers
537 views

dereference and advance pointer in one statement?

I'm reading from a byte array as follows: int* i = (int*)p; id = *i; i++; correct me if I'm wrong, but ++ has precedence over *, so is possible to combine the *i and i++ in the same statement? ...