Guest User

Untitled

a guest
Jun 25th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. DateTime birthday = 19.June(1976) + 8.Hours();
  2.  
  3. interface IZoomable
  4. {
  5. double ZoomLevel { get; set; }
  6. }
  7.  
  8. public static void SetDefaultZoom(this IZoomable z)
  9. {
  10. z.ZoomLevel = 100;
  11. }
Add Comment
Please, Sign In to add comment