Advertisement
wingman007

C#EventDriven_TickEventArgs_3а

Sep 30th, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace EventDriven3a
  8. {
  9.     class TickEventArgs : EventArgs
  10.     {
  11.         private DateTime timeNow;
  12.  
  13.         public DateTime TimeNow
  14.         {
  15.             get { return timeNow; }
  16.             set { timeNow = value; }
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement