Facebook
From Henrietta Nagy, 6 Months ago, written in C#.
This paste is a reply to Working with strings from Palma - view diff
Embed
Download Paste or View Raw
Hits: 164
  1. using System;
  2.  
  3. class Presentation{
  4.     static void HenikePresentation(){
  5.  
  6.         string favoriteMusicVerse = @"A szívem vigyáz rád,
  7. a szívem vigyáz rád!
  8. Mostantól, és mindöröké már.";
  9.  
  10.         string personalInfo = $"tName: Nagy HenriettantProfile: InformaticsntHobby: watching seriesntBirth Date: 14.02.2003";
  11.  
  12.  
  13.         Console.WriteLine("My favorite music verse:n");
  14.         Console.WriteLine(favoriteMusicVerse);
  15.         Console.WriteLine("nPersonal information:");
  16.         Console.WriteLine(personalInfo);
  17.     }
  18.  
  19.     static void Main(){
  20.         HenikePresentation();
  21.     }
  22. }
  23.