Tagged Questions
18
votes
4answers
826 views
Possible to override null-coalescing operator?
Is it possible to override the null-coalescing operator for a class in C#?
Say for example I want to return a default value if an instance is null and return the instance if it's not. The code ...
8
votes
2answers
94 views
Null coalescing operator giving Specified cast is not valid int to short
Does anyone know why the last one doesn't work?
object nullObj = null;
short works1 = (short) (nullObj ?? (short) 0);
short works2 = (short) (nullObj ?? default(short));
short works3 = 0;
short ...
5
votes
5answers
373 views
Is it possible to use operator ?? and throw new Exception()?
I have a number of methods doing next:
var result = command.ExecuteScalar() as Int32?;
if(result.HasValue)
{
return result.Value;
}
else
{
throw new Exception(); // just an example, in my code ...
3
votes
2answers
265 views
Null-coalescing operator and lambda expression
take a look at the following code I attempted to write inside a constructor:
private Predicate<string> _isValid;
//...
Predicate<string> isValid = //...;
this._isValid = isValid ?? s ...
3
votes
4answers
398 views
how do I treat null lists like empty lists in linq?
Below is some linqpad test code. When this runs it errors because the second instance of "item" has a null list of subitems as opposed to an empty list.
I want to treat both situations (null or empty ...
3
votes
7answers
753 views
Is the C# '??' operator thread safe?
Everyone knows that this is not thread safe:
public StringBuilder Builder
{
get
{
if (_builder != null)
_builder = new StringBuilder();
return _builder;
}
}
...
2
votes
5answers
137 views
Null-Coallescing Operator - Why Casting?
Can anyone please tell me why does the first of the following statements throws a compilation error and the second one does not?
NewDatabase.AddInParameter(NewCommand, "@SomeString", DbType.String, ...
2
votes
5answers
143 views
null coalescing order of operation
I'm getting strange results from this method:
public static double YFromDepth(double Depth, double? StartDepth, double? PrintScale)
{
return (Depth - StartDepth ?? ...
2
votes
4answers
386 views
Coalesce operator in C#?
I think i remember seeing something similar to the ?: ternary operator in C# that only had two parts to it and would return the variable value if it wasn't null and a default value if it was. ...
1
vote
4answers
103 views
Using null-coalescing as a replacement for try catch block
How come I get an invalid cast exception when trying to set a NULL value returned from the database inside Comments which is of type Int32.
I am trying to replace this:
try
...
1
vote
1answer
82 views
IGNORE! Null coalesce behaves differently from if null block - why? [closed]
I've just changed the implementation of our AutoMocker from being backed by Autofac to being backed by a hashtable, and a test started failing weirdly
private static Func<TResource, ...