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?
|
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:
| |||||||
feedback
|
|
It's called the "null coalescing operator" and works something like this: Instead of doing:
You can now just do:
| |||
feedback
|
|
It's the null coalescing operator. It was introduced in C# 2. The result of the expression Two nice things:
That will use the first non-null value out of the shipping, billing or contact address. | |||||||||||||||
feedback
|
|
That is the coalesce operator. It essentially is shorthand for the following
MSDN Documentation on the operator | |||
|
feedback
|
|
It's the new Null Coalesce operator. The ?? operator returns the left-hand operand if it is not null, or else it returns the right operand. You can read about it here: http://msdn.microsoft.com/en-us/library/ms173224(VS.80).aspx | |||
|
feedback
|
|
it's the coalesce operator. it will return another value if the first value is null
| ||||
|
feedback
|
|
it checks if category is null - when this is the case the null value is replaced by "Home". | |||
|
feedback
|
|
One of my favorite uses for the null coalescing operator is to avoid if statements in my code (I think if statements are ugly and just clutter things up most times). For example, take a typical scenario where one might choose to load something from cache if available, otherwise load from the db and populate the cache.
To me, that's ugly code. I may be a bit anal, but why not refactor it to this instead?
It more closely follows SRP and is cleaner and easier to read, IMO. The functions perform exactly one clearly identifiable function each. | |||||||||||||||||
feedback
|
|
int? is a nullable int, which means it can have the values of a normal int and null. Read this for details. | ||||
|
feedback
|
|
That's the null-coalescing operator . It's used with nullable types (among other things, sorry :) | ||||
|
feedback
|