int? можно было использовать.
Типа
T DoSmth<T>(T input)
{
if(input == null)
return null;
return DoSmthElse(input);
}
Обсуждают сегодня