the null-coalescing operator is used to define a default value for nullable value types or reference types. It returns the left-hand operand if the operand is not null; otherwise it returns the right operand.

learn more… | top users | synonyms

1
vote
1answer
101 views

C# Reflection get Field or Property by Name

Is there a way to supply a name to a function that then returns the value of either the field or property on a given object with that name? I tried to work around it with the null-coalesce operator, ...
3
votes
1answer
69 views

How to express null coalescing operator using CodeDOM?

Let's say, I have following simplified type: public class Model { public decimal? Result { get; set; } } How to express null coalescing operator using CodeDOM to generate C# code, is it ...
3
votes
2answers
130 views

What is wrong with this simple COALESCE select query? (mysql)

I have this query: SELECT COALESCE(CONCAT(Ar.usaf, '-', Ar.wban),"NONE") AS TABLE_NAME FROM `metadata`.`ISH-HISTORY_HASPOS` A INNER JOIN `metadata`.`Artificial` Ar ON (Ar.id = A.mergeId) ...
10
votes
4answers
376 views

Is “If” condition better than ?? and casting

I have following two approaches for same functionality - one with "if” condition and one with "?? and casting". Which approach is better? Why? Code: Int16? reportID2 = null; //Other code ...
0
votes
2answers
120 views

Which works faster Null coalesce , Ternary or If Statement [closed]

We use ?? Operator to evaluate expressions against null values, for example: string foo = null; string bar = "woooo"; string foobar= foo ?? bar ; // Evaluates foobar as woooo We also used an if ...
7
votes
6answers
388 views

C# ?? null coalescing operator LINQ

I am trying to prevent having NULL values when I parse an XML file to a custom object using LINQ. I found a great solution for this on Scott Gu's blog, but for some reason it does not work for ...
3
votes
3answers
88 views

Null-coalescing operator

I have the following code: decimal? a = 2m; decimal? b = 2m; decimal c = a ?? 1m * b ?? 1m; Since both a and b have been filled in, I'm expecting c to give me the result of 4. However, the result ...
0
votes
0answers
46 views

Keeping in (http)context over multiple modules

I have a class with static functions which need to use the current HttpContext. Instead of sending the object each time I use these functions, I tried a different approach. I built such a property: ...
0
votes
3answers
125 views

It is possible to overload `??` operator in C#?

I read this MSDN document regarding the operator overloading. In that example, the operators used were +, - and also can define others * or /. I want to overload ?? operator to be used for strings ...
8
votes
2answers
237 views

Understanding the null coalescing operator (??)

I have a custom WebControl which implements a .Value getter/setter returning a Nullable<decimal> It's a client-side filtered textbox (a subclass of TextBox with included javascript and some ...
0
votes
4answers
170 views

c# null string?

I had the following: string Name = name.First + " " + name.Last; This returns Tom Jones just fine. In case name.First may be null or name.Last may be null, I have the following: string ...
4
votes
1answer
326 views

Play 2.x null-safe coalescing (avoiding NPEs in templates)

In Play 1.x you could do things like &{task?.server?.name} to print the server name if it exists or to print nothing if task or task.server were null. How can I get the same result in the 2.x ...
2
votes
3answers
262 views

Coalesce potentially Empty LINQ query results

Im using Linq to return IDs from 4 cascading dropdown menus. The user may have selected 1 or more values from either 1 or all of the menus. From the users selections, Im then quering the text ...
6
votes
1answer
193 views

Is it possible to implement `??` (a null coalescing operator from C#) in Scala that does not use reflection?

I've found somewhere an implementation of C# null coalescing operator '??': implicit def coalescingOperator[T](pred: T) = new { def ??[A >: T](alt: =>A) = if (pred == null) alt else pred } ...
7
votes
3answers
939 views

Null coalescing in powershell

Is there a null coalescing operator in powershell? I'd like to be able to do these c# commands in powershell: var s = myval ?? "new value"; var x = myval == null ? "" : otherval;
10
votes
4answers
421 views

Is the null coalescing operator (??) in C# thread-safe?

Is there a race condition in the following code that could result in a NullReferenceException? -- or -- Is it possible for the Callback variable to be set to null after the null coalescing operator ...
0
votes
1answer
242 views

How to coalesce an array in JavaScript/CoffeeScript?

Coalescing a static set of items is easy: var finalValue = configValue || "default"; # JavaScript finalValue = configValue ? "default" # CoffeeScript But is there a simple way to coalesce an array ...
4
votes
5answers
559 views

c# What does this line mean?

Could anybody explain the following code return total ?? decimal.Zero please? public decimal GetTotal() { // Part Price * Count of parts sum all totals to get basket total decimal? total = ...
2
votes
2answers
160 views

using coalescing null operator on nullable types changes implicit type

I would expect the next three lines of code to be the same: public static void TestVarCoalescing(DateTime? nullableDateTime) { var dateTimeNullable1 = nullableDateTime.HasValue ? nullableDateTime : ...
1
vote
9answers
132 views

C# coalesce operator Throws

I have a class with a string property. I use the coalesce operator when reading from it as it might be null, but it still throws me an NullRefrenceExeption. string name = ...
1
vote
3answers
137 views

Checking a function result for null values

In his answer to this question, BlackBear suggested replacing string y = Session["key"] == null ? "none" : Session["key"].ToString(); with string y = (Session["key"] ?? "none").ToString(); ...
111
votes
9answers
5k views

What is the proper way to check for null values?

I love the null-coalescing operator because it makes it easy to assign a default value for nullable types. int y = x ?? -1; That's great, except if I need to do something simple with x. For ...
7
votes
5answers
1k views

Possible to use ?? (the coalesce operator) with DBNull?

If I have code similar to the following: while(myDataReader.Read()) { myObject.intVal = Convert.ToInt32(myDataReader["mycolumn"] ?? 0); } It throws the error: Object cannot be cast from ...
6
votes
3answers
306 views

Atomicity of C# Coalescing Operator

I ran into some singleton code today in our codebase and I wasn't sure if the following was thread-safe: public static IContentStructure Sentence{ get { return _sentence ?? (_sentence = ...
3
votes
2answers
80 views

What is the terminology for what this method attempts?

I don't know: if this works. if it's a good idea. what it is called in order to find out more about it. But I think the intent is fairly apparent. public static class DebugLogic { public ...
5
votes
4answers
157 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 ...
0
votes
1answer
83 views

Operator ?? null coalescing in XNA 4 inside if statement

How can I fix my code under this text? //puncts = puncts ?? new List<Vector2>() { new Vector2(position.X, position.Y) }; if (Vector2.Distance(position, puncts[indexpunkt] = puncts[indexpunkt] ...
-1
votes
6answers
144 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 ...
8
votes
2answers
246 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 ...
2
votes
4answers
159 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
313 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 ...
4
votes
2answers
580 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 ...
0
votes
2answers
324 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? ...
2
votes
1answer
113 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
1answer
274 views

Javascript null coalescing help, how can I incorporate a threshold value? a = b || c but if b > d, choose c

I want to assign a value to a variable in javascript var a = b || c; //however if b > 200 choose c Is there a simple way to do this? var a = (b && b <= 200) ? b : c; Thanks for any ...
0
votes
4answers
329 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 ...
7
votes
4answers
459 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 ...
0
votes
3answers
152 views

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

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 = ...
4
votes
4answers
3k views

VB.NET null coalescing operator? [duplicate]

Possible Duplicates: Coalesce operator and Conditional operator in VB.NET Is there a VB.NET equivalent for C#'s ?? operator? Is there a built-in VB.NET equivalent to the C# null ...
0
votes
6answers
1k 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 ...
4
votes
5answers
253 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
374 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 ?? ...
240
votes
6answers
8k 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 ...
5
votes
3answers
485 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 ...
3
votes
3answers
151 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 ...
-1
votes
2answers
142 views

Null-coalescing operator - Which of the following do you prefer? [duplicate]

Possible Duplicate: In your opinion what is more readable: ?? (operator) or use of if's Let's say you have a method that checks is a list is null. If so, it instantiates it. Generally, ...
26
votes
3answers
5k views

Is there a Python equivalent of the C# null-coalescing operator?

In C# there's a null-coalescing operator (written as ??) that allows for easy (short) null checking during assignment: string s = null; var other = s ?? "some default value"; Is there a python ...
2
votes
4answers
544 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. ...
0
votes
1answer
64 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? ...
2
votes
1answer
723 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 ...

1 2