Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void getMyDay(DateTime begin, DateTime eind)
- {
- List<DateTime> list = new List<DateTime>();
- foreach (DateTime days in EachDay(begin, eind))
- {
- list.Add(days);
- }
- list.ForEach(t => Console.WriteLine(t.ToShortDateString()));
- // ToShortDateString(); this:P
- }
Advertisement
Add Comment
Please, Sign In to add comment