I\'ve got something like this DateTime.Now.ToString(\"dd.MM.yy\"); In my code, And I need to add 1 week to it, like 5.4.2012 to become 12.4.2
DateTime.Now.ToString(\"dd.MM.yy\");
5.4.2012
12.4.2
You want to leave it as a DateTime until you are ready to convert it to a string.
DateTime
DateTime.Now.AddDays(7).ToString("dd.MM.yy");