viewing paste Unknown #14591 | C#

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
using System;
 
class Program
{
    static void Main()
    {
        string name;
        string activity;
 
        Console.WriteLine("Hello, what is your name?");
        name = Console.ReadLine();
        Console.WriteLine("Hello, {0}! What are you doing right now?", name);
        activity = Console.ReadLine();
        Console.WriteLine("That's cool {0}, I like {1} too!", name, activity);
        Console.ReadLine();
    }
}
Viewed 723 times, submitted by Pyrly.