1. using zork.name;
  2. using zork.name.cv;
  3. using zork.name.rss;
  4.  
  5. namespace Development
  6. {
  7. // languages of UI
  8. enum Language
  9. {
  10. en, uk
  11. }
  12.  
  13. // minimal developer's profile and contacts
  14. class Developer
  15. {
  16. public string _name = "zork";
  17. public CV _cv = new CV(Language.en);
  18.  
  19. private decimal _mobile = 38.0937501507m; // in Ukraine
  20. private string _keyword = "zork.name"; // Website, Gmail, Google Talk and Skype
  21. private ulong _icq = 308006661;
  22.  
  23. public Developer() { }
  24.  
  25. public virtual bool Contact(string name, string im, string message);
  26. }
  27. }
  28.  
  29. // © 2004–2024 zork
  30. //   P.S. it's just for fun, don't take the code seriously :)
Gmail: zork.name Google Talk: zork.name Skype: zork.name ICQ: 308006661