14
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
string Naam = "Geert Linthoudt";
8
string Resultaat = "";
9
10
Resultaat = Naam.ToLower();
11
12
Console.WriteLine(Resultaat);
13
}
14
}
Cached Result
Compilation error (line 9, col 15): Cannot implicitly convert type 'double' to 'decimal'. An explicit conversion exists (are you missing a cast?)