The following C# expression is resulting in a compiler error in my program:
$"Getting image from {location.IsLatitudeLongitude ? $"{location.Latitude} - {location.Longitude}" : location.Location}."
Shouldn't it be possible to use String Interpolation like that? Or is it just not possible to do this?