Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Returning nullable string types

So I have something like this

public string? SessionValue(string key)
{
    if (HttpContext.Current.Session[key].ToString() == null || HttpContext.Current.Session[key].ToString() == "")
        return null;

    return HttpContext.Current.Session[key].ToString();
}

which doesn't compile.

How do I return a nullable string type?

like image 624
sarsnake Avatar asked May 29 '09 22:05

sarsnake


2 Answers

String is already a nullable type. Nullable can only be used on ValueTypes. String is a reference type.

Just get rid of the "?" and you should be good to go!

like image 73
Andy White Avatar answered Oct 18 '22 19:10

Andy White


As everyone else has said, string doesn't need ? (which is a shortcut for Nullable<string>) because all reference types (classes) are already nullable. It only applies to value type (structs).

Apart from that, you should not call ToString() on the session value before you check if it is null (or you can get a NullReferenceException). Also, you shouldn't have to check the result of ToString() for null because it should never return null (if correctly implemented). And are you sure you want to return null if the session value is an empty string ("")?

This is equivalent to what you meant to write:

public string SessionValue(string key)
{
    if (HttpContext.Current.Session[key] == null)
        return null;

    string result = HttpContext.Current.Session[key].ToString();
    return (result == "") ? null : result;
}

Although I would write it like this (return empty string if that's what the session value contains):

public string SessionValue(string key)
{
    object value = HttpContext.Current.Session[key];
    return (value == null) ? null : value.ToString();
}
like image 30
Lucas Avatar answered Oct 18 '22 20:10

Lucas