Tagged Questions

125
votes
6answers
4k views

Curious null-coalescing operator custom implicit conversion behaviour

This question arose when writing my answer to this one, which talks about the associativity of the null-coalescing operator. Just as a reminder, the idea of the null-coalescing operator is that an ...
31
votes
9answers
1k views

Is there an “opposite” to the null coalescing operator? (…in any language?)

null coalescing translates roughly to return x, unless it is null, in which case return y I often need return null if x is null, otherwise return x.y I can use return x == null ? null : x.y; Not ...
29
votes
4answers
6k views

Is there a VB.NET equivalent for C#'s ?? operator?

Is there a VB.NET equivalent for C#'s ?? operator?
20
votes
4answers
2k views

?? Coalesce for empty string?

If this is a duplicate please point me to it and I'll close, I couldn't find anything. Something I find myself doing more and more is checking a string for empty (as in "" or null) and a conditional ...
19
votes
12answers
1k 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?
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 ...
16
votes
5answers
1k 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. ...
10
votes
2answers
262 views

Weird operator precedence with ?? (null coalescing operator)

Recently I had a weird bug where I was concatenating a string with an int? and then adding another string after that. My code was basically the equivalent of this: int? x=10; string s = "foo" + x ?? ...
10
votes
5answers
347 views

What do you think about ??= operator in C#? [closed]

Do you think that C# will support something like ??= operator? Instead of this: if (list == null) list = new List<int>(); It might be possible to write: list ??= new List<int>(); ...
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 ...
8
votes
7answers
275 views

Negate the null-coalescing operator

I have a bunch of strings I need to use .Trim() on, but they can be null. It would be much more concise if I could do something like: string endString = startString !?? startString.Trim(); ...
6
votes
4answers
142 views

Any good reasons to not use null-coalescing operator for lazy initialization?

Greetings I was doing some lazy initialization code today, and thought why not use the null-coalescing operator to do this, it is shorter, but then I thought is there any overhead or additional cost ...
6
votes
10answers
1k 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: ...
5
votes
4answers
52 views

Implicit casting of Null-Coalescing operator result

With the following understanding about null coalescing operator (??) in C#. int? input = -10; int result = input ?? 10;//Case - I //is same as: int result = input == null? input : 10; // Case - II ...
5
votes
3answers
274 views

C# coalesce operator doesn't replace a null method return value?

I have this code: MyClass _localMyClass = MyClassDAO.GetMyClassByID(123) ?? new MyClass(); This is the method: public static MyClass GetMyClassByID(int id) { var query = from m in ...
5
votes
2answers
602 views

Common c# idioms including coalesce ?? operator

Everyone knows at least two common c# idioms including coalesce operator: a singleton one: return _staticField = _staticField ?? new SingletonConstructor(); and a chain one: notNullableResult = ...
5
votes
3answers
320 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 ...
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 ...
4
votes
3answers
450 views

Ruby's equivalent to C#'s ?? operator [closed]

Possible Duplicate: C# ?? operator in Ruby? Is there a Ruby operator that does the same thing as C#'s ?? operator? The ?? operator returns the left-hand operand if it is not null, or ...
3
votes
3answers
132 views

Is there an easier way to do this in C#? (null-coalescing type question)

Is there an easier way to do this? string s = i["property"] != null ? "none" : i["property"].ToString(); notice the difference between it and null-coalesce (??) is that the not-null value (first ...
3
votes
3answers
636 views

C# ?? null coalescing operator question

I have defined Class Person property Birthday as nullable DateTime? , so why shouldn’t the null coalescing operator work in the following example? cmd.Parameters.Add(new SqlParameter("@Birthday", ...
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
4answers
719 views

Is there a Perl equivalent to the null coalescing operator (??) in C#?

I started to really like C#'s ?? operator. And I am quite used to the fact, that where there is something handy in some language, it's most probably in Perl too. However, I cannot find ?? equivalent ...
3
votes
7answers
751 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
1answer
55 views

Using null coalescing operator with a comparison

Given the method: public static bool IsDateValid(DateTime? date) { if (date.HasValue ? date.GetValueOrDefault() < MinDate : false) { return false; } return ...
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
3answers
268 views

Null coalescing within an invocation chain

If I, within a Linq where clause, Have a long list of objects that each has the possibility of returning null. Something like this. ...
2
votes
1answer
238 views

Does null-coalescence operator match empty string?

I have a very simple C# question: aren't the following statements equal when dealing with an empty string? s ?? "default"; or (!string.IsNullOrEmpty(s)) ? s : "default"; I think: since ...
2
votes
3answers
122 views

What is the result if all parameters in a null coalescing operation are null?

When this code finishes, what is the result of myObject? object myObject = "something"; object yourObject = null; myObject = null ?? yourObject;
2
votes
4answers
384 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. ...
2
votes
3answers
97 views

What does this ?? notation mean here [closed]

Possible Duplicate: What is the “??” operator for? What does the ?? notation mean here? Am I right in saying: Use id, but if id is null use string "ALFKI" ? public ...
2
votes
7answers
212 views

Is there a more elegant way to add nullable ints?

I need to add numerous variables of type nullable int. I used the null coalescing operator to get it down to one variable per line, but I have a feeling there is a more concise way to do this, e.g. ...
2
votes
7answers
577 views

Null-coalescing operator and operator && in C#

Is it possible to use together any way operator ?? and operator && in next case: bool? Any { get { var any = this.ViewState["any"] as bool?; return any.HasValue ? any.Value ...
2
votes
2answers
645 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
13answers
287 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 ...
2
votes
5answers
875 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 ??= ...
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
2answers
86 views

ASP.NET MVC / C# - Null Coalescing Operator, Types

I'm trying create pagination on my page. The user can select the number of items that will appear per page, the preferred size then will be saved as cookie. But when I try to choose between the ...
1
vote
3answers
95 views

How to get the Null Coalesce operator to work in ASP.NET MVC Razor?

I have the following, but it's failing with a NullReferenceException: <td>@item.FundPerformance.Where(xx => fund.Id == xx.Id).FirstOrDefault().OneMonth ?? -</td> OneMonth is defined ...
1
vote
3answers
64 views

Is there a cleaner way to set this anonymous class property?

I am returning an anonymous class: var clients = from c in this.ClientRepository.SearchClientByTerm(term, 10) select new { id = c.Id, line1 = c.Address.Line1 ?? "Unknown ...
1
vote
4answers
330 views

Using null coalescing in foreach statement

Trying to figure out how to get the null coalescing operator to work in a foreach loop. I'm checking to see what a string ends with and based on that, route it to a certain method. Basically what I ...
0
votes
2answers
70 views

Ternary/null coalescing operator and assignment expression on the right-hand side?

While experimenting with ternary and null coalesce operators in C# I discovered that it is possible to use assignments on the right-hand side of expressions, for example this is a valid C# code: int? ...
0
votes
4answers
96 views

Null arrays and IEnumerable<T>

A previous question discusses IEnumerable and the convention of using empty collections instead of null valued ones. It is a good practice as it does away with many mistake-prone null checks. But the ...
0
votes
3answers
71 views

What is the most concise way to write the opposite of a null coalesce [closed]

Possible Duplicate: Is there an “opposite” to the null coalescing operator? (…in any language?) Is there a more concise way of writing the third line here? int? i = ...
0
votes
6answers
177 views

Use c# Null-Coalescing Operator with an int

I'm trying to use the null-coalescing operator on an int. It works when I use it on strings UserProfile.Name = dr["Name"].ToString()??""; When I try to use it on an int like this ...
0
votes
1answer
58 views

Combining the coalescence more than once?

Is there anything in C# that would allow you to do something such as string str = nullval1 ?? nullval2 ?? nullval3 ?? "Hi"; and it would go left to right picking the first one that is not null? ...
0
votes
5answers
269 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
votes
6answers
111 views

Strange behavior of the '??'-operator in C# 3.5

Is this a bug or am I interpreting the '??'-operator wrong? Check out the get property below and the comments. I'm using C# .NET 3.5 private List<MyType> _myTypeList; private ...

1 2