Guest User

Untitled

a guest
Jan 23rd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using KickoffSharp;
  4.  
  5. namespace KickoffTerminal
  6. {
  7. class MainClass
  8. {
  9. public static void Main (string[] args)
  10. {
  11. var account = new Account (args[0], args[1]);
  12. var accountOwner = account.Owner;
  13. Console.WriteLine ("{0} {1} has {2} projects attached to his/her account",
  14. accountOwner.FirstName, accountOwner.LastName, account.Projects.Count ());
  15.  
  16. Console.WriteLine ("\nbye!");
  17. }
  18. }
  19. }
Add Comment
Please, Sign In to add comment