1. using zork.name;
  2. using zork.name.rss;
  3.  
  4. namespace Development
  5. {
  6. // languages of UI
  7. enum Language
  8. {
  9. en, ru, uk
  10. }
  11.  
  12. // minimalistic developer's profile and contacts
  13. class Developer
  14. {
  15. public string _name = "zork";
  16. public CV _cv = new CV(Language.en);
  17.  
  18. private decimal _mobile = 38.0937501507m; // in Ukraine
  19. private string _keyword = "zork.name"; // Website, Gmail, Google Talk and Skype
  20. private ulong _icq = 308006661;
  21.  
  22. public Developer() { }
  23.  
  24. public virtual bool Contact(string n, string e, string m);
  25. }
  26. }
  27.  
  28. // © 2004–2010 zork
  29. //   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