Mega Code Archive

 
Categories / C# Tutorial / Development
 

Swapping the Indexed Placeholders and Corresponding Variables

class MainClass {   static void Main()   {       string firstName;       string lastName;       firstName = "A";       lastName = "B";       System.Console.WriteLine("Your full name is {1}, {0}",firstName, lastName);   } }