Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _06._Strings_And_Objects
- {
- class Program
- {
- static void Main(string[] args)
- {
- string hello = "Hello";
- string world = "World";
- object concat = hello + " " + world;
- Console.WriteLine($"{concat}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment