//Declaration of variablesstring firstName = "Bob";int number = 3;decimal temperature = 34.4M;//Console commandConsole.WriteLine($"Hello, {firstName}! You have {number} messages in your inbox. The temperature is {temperature} celsius.");
//Declaration of variablesstring firstName = ("Bob");int number = (3);decimal temperature = (34.4M);//Console commandConsole.Write($"Hello, {firstName}! You have {number} messages in your inbox. The temperature is {temperature} celsius. ");