Get Session Variable and Check for Null
Accessing a Session variable that hasn't been created causes a null exception. You can use the C# null-coalescing(??) or 'as' operators to simplify and avoid a null exception.
First two examples yield the same result;
myClassObj will receive the myClassObj stored in the Session variable if it exists; otherwise null.
myClassObj will receive the myClassObj stored in the Session variable if it exists; otherwise null.