Advertisement
LeRoY_Go

Untitled

Mar 21st, 2022
1,164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.39 KB | None | 0 0
  1. using System;
  2.  
  3. namespace C_Sharp_Junior
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             string name = "Иванов";
  10.             string surname = "Иван";
  11.             Console.WriteLine($"{name} {surname}");
  12.             (name, surname) = (surname, name);
  13.             Console.WriteLine($"{name} {surname}");
  14.             Console.ReadKey();
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement