Advertisement
damesova

FormattingExample3

Mar 19th, 2023
630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.22 KB | Source Code | 0 0
  1. public void PrintGreeting(string name)
  2. {
  3.     if (string.IsNullOrWhiteSpace(name))
  4.     {
  5.         Console.WriteLine("Hello, stranger!");
  6.     }
  7.     else
  8.     {
  9.         Console.WriteLine($"Hello, {name}!");
  10.     }
  11. }
  12.  
Tags: formatting
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement