C# string interpolation 💲

Опубликовано: 03 Июль 2021
на канале: Bro Code
23,467
886

C# string interpolation tutorial example explained

#C# #string #interpolation

using System;

namespace MyFirstProgram
{
class Program
{
static void Main(string[] args)
{
// string interpolation = allows us to insert variables into a string literal
// precede a string literal with $
// {} are placeholders

String firstName = "Bro";
String lastName = "Code";
int age = 21;

Console.WriteLine($"Hello {firstName} {lastName}.");
Console.WriteLine($"You are {age,-10} old.");

Console.ReadKey();
}
}
}


Смотрите видео C# string interpolation 💲 онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Bro Code 03 Июль 2021, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 23,46 раз и оно понравилось 88 людям.