© 2026 Hedgehog Software, LLC
var a = string.Hello(); static class Extensions { extension(string s) { public static string Hello() => "Hello "; } }
var a = Console.Hello(); static class Extensions { extension(Console cs) { public static string Hello() => "Hello "; } }
'Console': static types cannot be used as parameters