3
votes
3answers
148 views
Bad Use of Null Coalescing Operator?
myFoo = myFoo ?? new Foo();
instead of
if (myFoo == null) myFoo = new Foo();
Am I correct in thinking that the first line of code will always perform an assignment? Also, is this a bad use of the …
0
votes
2answers
89 views
C# null coalescing operator equivalent for c++
is there a C++ equivalent for C# null coalescing operator? i am doing too many null checks in my code.. so was looking for a way to reduce the amount of null code
2
votes
5answers
176 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 …
0
votes
10answers
204 views
Is it possible to coalesce string and DBNull in C#?
I'm writing a C# routine to call a stored proc. In the parameter list I'm passing in, it is possible that one of the values can legally be null. So I thought I'd use a line like this:
…
2
votes
14answers
226 views
In your opinion what is more readable: ?? (operator) or use of if’s
I have a method that will receive a string, but before I can work with it, I have to convert it to int. Sometimes it can be null and I have to change its value to "0". Today I have:
public void …
0
votes
5answers
169 views
Is it bad to coalesce the evaluator in a ternary expression? (C#)
I've looked around a little and haven't found an equivalent question.
Is this bad coding practice? I can read it easily, but is it too cryptic for someone reading the code?
bool? testBool = null;
…
1
vote
7answers
286 views
Is .net ?? operation thread safe?
Everyone knows that this is not thread safe
public StringBuilder Builder
{
get
{
if (_builder != null)
_builder = new StringBuilder();
return _builder;
}
}
…
8
votes
12answers
412 views
What is the “??” operator for?
I was wondering about "??" signs in c# code.. what is it for? And how can i use it?
what about "int?"? is it nullable int?
See also:
?? Null Coalescing Operator —> What does coalescing mean?
5
votes
6answers
466 views
?? Null Coalescing Operator --> What does coalescing mean?
I'm tempted to lie and say that English is my second language, but the truth is that I just have no idea what 'Coalescing' means. I know what ?? 'does' in C#, but the name doesn't make sense to me.
…
1
vote
5answers
249 views
A null coalescing assignment operator?
It would be really nice if C# allowed an ??= operator. I've found myself writing the following frequently:
something = something ?? new Something();
I'd rather write it like this:
something ??= …
9
votes
4answers
283 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 …
