Skip to content

Instantly share code, notes, and snippets.

@easbarba
Created August 5, 2020 14:58
Show Gist options
  • Save easbarba/5d072d3d7bf519e7debd8283e0421137 to your computer and use it in GitHub Desktop.
Save easbarba/5d072d3d7bf519e7debd8283e0421137 to your computer and use it in GitHub Desktop.
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