Skip to content

Instantly share code, notes, and snippets.

@ShamilAitov
Last active January 31, 2023 22:36
Show Gist options
  • Save ShamilAitov/f99477ab95e9a198ebc00d4537e2b1bb to your computer and use it in GitHub Desktop.
Save ShamilAitov/f99477ab95e9a198ebc00d4537e2b1bb to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace УрокApp2
{
internal class Program
{
static void Main(string[] args)
{
string name = "Аитов";
string surname = "Шамиль";
Console.WriteLine(surname + " " + name);
(name, surname) = (surname, name);
Console.WriteLine(surname + " " + name);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment