This is my continuation of my work: Adding DateTime in C#
I already can add days on my date.
My Question is:
a.) it is possible to multiply a year to datetime?
eg.
DateTime newDate = DateTime.Today.AddDays(10);
long xDate = DateTime.Now.Year * newDate; // error : Operator '*'
// cannot be applied to operands of type 'int' and 'System.DateTime
Try