Tagged Questions
The lifted-operators tag has no wiki summary.
18
votes
2answers
440 views
What are lifted operators?
I was looking at this article and am struggling to follow the VB.NET example that explains lifted operators. There doesn't seem to be an equivalent C# example or tutorial. I don't have much experience ...
15
votes
3answers
349 views
Why are there no lifted short-circuiting operators on `bool?`?
Why doesn't bool? support lifted && and ||? They could have lifted the true and false operators which would have indirectly added lifted && and ||.
The operators | and & are ...
4
votes
4answers
331 views
System.Nullable<T> What is the value of null * int value?
Consider the following statements:
int? v1 = null;
int? v2 = 5 * v1;
What is the value of v2? (null or empty string?)
How can I prevent the compiler to mark it as invalid operation? Do I need to ...