(int someValue)
| 32 | private int myPrivateValue; |
| 33 | |
| 34 | public ExampleClass(int someValue) |
| 35 | { |
| 36 | Console.WriteLine($"Example({someValue})"); |
| 37 | } |
| 38 | |
| 39 | public static void StaticMethod(float value) |
| 40 | { |
nothing calls this directly
no outgoing calls
no test coverage detected