Guest User

Untitled

a guest
Jan 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. using static staticUsingExample.Logger;
  2.  
  3. namespace staticUsingExample
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. DebugLog("Member Start");
  10.  
  11. // Execute method
  12. Log("Testing logging inside Main() method");
  13.  
  14. DebugLog("Member End");
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment