# “StringPlusNull” (Problem)

What will the following code display?

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

[Solution](https://andreyakinshin.gitbook.io/problembookdotnet/en/strings/stringplusnull-s)
