Итак, у меня есть что-то вроде этого
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();
}
который не компилируется.
Как вернуть нулевой тип строки?