string
string is an immutable sequence of characters.
string greeting = "Hello";string name = "World";Console.WriteLine($"{greeting}, {name}!");Run the Application
Section titled “Run the Application”dotnet runResult
Section titled “Result”Hello, World!