Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. if (string.IsNullOrEmpty(listOfInputParameters.ParamName))
  2. {
  3. Console.WriteLine("Write message for this param");
  4. Console.ReadKey();
  5. return;
  6. }
  7.  
  8. if (string.IsNullOrEmpty(listOfInputParameters.anotherParam))
  9. {
  10. Console.WriteLine("Different param Different message");
  11. Console.ReadKey();
  12. return;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement