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
Any reason you can't use the AddDays method as in
DateTime.Now.AddDays(7)