// Directions: Intermediate #2-3
// 1) Create two string variables in the Main method: strFirstName and strLastName
// 2) Create a new Method called GetFullName
// a) Add two input parameters for first name and last name.
// b) Method should return a string for full name in the following format "Foote, Brian"
// c) Put the keyword static between the public and string.
// 3) Call the method from the Main Method.
// 3) Output the full name to the console.
// 4) Submit your dotnetfiddle link in Blackboard.
using System;
public class Program
{
public static void Main()
}