I have a class that looks like this:
public class MyService { private MyService(){} public static string GetStuff() { var stuffDid = new
You need to make DoStuff static.
private static string DoStuff() { //do stuff }