Facebook
From Gal Kristof Gabor, 1 Year ago, written in C#.
This paste is a reply to Working with strings from Palma - go back
Embed
Viewing differences between Working with strings and Working with strings _ Gabi
//Meghivas:
Week2_4.Presentation();

//function:
class Program
Week2_4
{
    public static void Main()
Presentation()
    {
        // function calls here
string FaveMusic = @"Could I interest you in everything?
 All of the time?
 A little bit of everything
 All of the time
 Apathy's a tragedy
 And boredom is a crime
 Anything and everythingv
 All of the time";
        string FirstName = "Gal";
        string LastName = "Kristof Gabor";
        string name = $"My full name is: {FirstName} {LastName}";
        string profile = "Informatics, Software Developing";
        string hobby = "Gaming, programming and going out with friends";
        string BirthDate = "2003, November, 19th";
        string AboutMyself = $"{name}, I was born in {BirthDate}, I am currently learning {profile} and my main hobbies are: {hobby}";
        Console.WriteLine($"My favorite music is 'Welcome to the internet' By Bo Burnham, here is a vers from it: n {FaveMusic}");
        Console.WriteLine($"n{AboutMyself}");
    }
}
}