Guest User

Untitled

a guest
Jan 21st, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public void getMyDay(DateTime begin, DateTime eind)
  2. {
  3. List<DateTime> list = new List<DateTime>();
  4. foreach (DateTime days in EachDay(begin, eind))
  5. {
  6. list.Add(days);
  7. }
  8. list.ForEach(t => Console.WriteLine(t.ToShortDateString()));
  9.  
  10. // ToShortDateString(); this:P
  11. }
Advertisement
Add Comment
Please, Sign In to add comment