static void Sample(string input) { string result = input == null ? "default" : input; Console.WriteLine($"Result: {result}"); }