Guest User

Untitled

a guest
Nov 12th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public MyMethod(string filename, int size)
  2. {
  3. if (string.IsNullOrWhiteSpace(filenname))
  4. {
  5. throw new ArgumentNullException("filename is null");
  6. }
  7.  
  8. if (size <= 0 || size < 1000)
  9. {
  10. throw new ArgumentException("Size is not valid");
  11. }
  12.  
  13. // some other code
  14. }
Add Comment
Please, Sign In to add comment