Created
August 5, 2020 14:58
-
-
Save easbarba/5d072d3d7bf519e7debd8283e0421137 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace test | |
{ | |
class Program | |
{ | |
static void Main() | |
{ | |
var fruit ="apple"; | |
var flavor = "orange"; | |
var i = "I want an {fruit} and {flavor} juice"; | |
Console.WriteLine(string.Format(i); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment