You need some frame of reference first. If 2 weeks and 3 days have passed until NOW (or a specified date), then you can get the
original date.
TimeSpan span = TimeSpan.FromDays(17D); // 17 days (D = double modifier)
DateTime now = DateTime.Now;
DateTime start = now.Subtract(span);
--
Dave Sexton
dave@www..jwaonline..com
-----------------------------------------------------------------------
"Carlos" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> Hi all,
>
> I have used the datetime class, but I just came up with a situation
> that need to have some advise. If I now how much time have passed,
> can I know the original date?. Lets say that I know that have passed
> 2 weeks and 3 days after any given event. How can I know the original
> date of the event?
>
> Thanks in advance.
>
>
> Carlos.
>