# «StringPlusNull» (Задача)

Что выведет следующий код?

```csharp
try
{
  Console.WriteLine(((string)null + null + null) == null);
}
catch (Exception e)
{
  Console.WriteLine(e.GetType());
}
```

[Решение](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/stringplusnull-s)
