Skip to content

Instantly share code, notes, and snippets.

@scottaddie
Created September 29, 2016 01:34
Embed
What would you like to do?
The reformatted version of the class
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MessyClassLibrary
{
public class Class1
{
public Class1()
{
}
public string GetFullName(string firstName,
string lastName)
{
return $"{firstName} {lastName}";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment