Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# name script

Console.Write("What's your first name?  ");
string firstname = Console.ReadLine();
Console.Write("What's your last name?  ");
string lastname = Console.ReadLine();
string fullname = ("G'day " + firstname + " " + lastname);
Console.WriteLine(fullname);
 
PREVIOUS NEXT
Tagged: #script
ADD COMMENT
Topic
Name
8+3 =