Answers for "string c# meaning"

C#
2

c# $ string

string color = blue;

// Both versions do the same thing.
Console.WriteLine("The sky is " + color);
Console.WriteLine($"The sky is {color}");
//Note the dollar ^sign    and ^curly^ brackets.
Posted by: Guest on March-27-2021

C# Answers by Framework

Browse Popular Code Answers by Language