1 2 3 4 5 6 7
namespace MyLib; public static class Greeter { public static string Greet(string name) { return $"hello {name}!"; } }