10 lines
195 B
C#
Raw Normal View History

// CS0266: Cannot implicitly convert type `double' to `int'. An explicit conversion exists (are you missing a cast?)
// Line: 8
class Program
{
static void Main()
{
var s = $"{1, 0.0}";
}
}