VelizarAvramov

06. Strings And Objects

Nov 15th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. using System;
  2. using System.Numerics;
  3.  
  4. namespace Demo
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             string first = "Hello";
  11.             string second = "World";
  12.  
  13.             object third = first + " " + second;
  14.             Console.WriteLine($"{third}");
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment