I am able to assign a variable like below:
if (Session["myVariable"] != null)
{
string variAble = Session["myVariable"].ToString();
}
Is there a method which checks whether an object is null or not and then assign if it is not null?
|
EDIT A slightly more robust form, as suggested by @hatchet, is:
|
|||||||||||
|
|
While this isn't anything new, you can use the conditional operator to potentially simplify this:
|
|||||||
|
|
|
You could write an extension method, as those still work with null objects.
I would consider it poor form though - it'll be confusing to whoever will be supporting the code after you, or even to you a few months down the track. It's probably better to just do the null check. |
|||||||||||
|
string.IsNullOrEmpty()– Ofer Zelig Jan 17 at 22:29