My first C# program :D
Tells me what you think :D
PHP Code:
using System;
namespace ConsoleApllication1
{
class Program
{
static void Main(string[] args)
{
begin:
Console.WriteLine("Please enter fisrt name:");
string firstname = Console.ReadLine();
Console.WriteLine("Please enter last name:");
string lastname = Console.ReadLine();
Console.WriteLine("Is " + firstname + " " + lastname + " your full name");
string input = Console.ReadLine();
switch (input)
{
case "yes":
Console.WriteLine("Your Name Is " + firstname + " " + lastname);
break;
case "no":
goto begin;
}
Console.ReadLine();
}
}
}
]
http://i229.photobucket.com/albums/e...eenshot-21.png
http://rapidshare.com/files/185850275/hello.exe.html