VelizarAvramov

06. Strings And Objects

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