Skip to content

Instantly share code, notes, and snippets.

@scottaddie
Created September 29, 2016 01:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottaddie/2051de64ee8072030947c9a220818cc8 to your computer and use it in GitHub Desktop.
Save scottaddie/2051de64ee8072030947c9a220818cc8 to your computer and use it in GitHub Desktop.
The class before reformatting was applied
namespace MessyClassLibrary {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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