Hey,
I have three variable here. All three are in a DateTime formate, Lets say date1, date2, date3
I wanted to get the difference and compare it with date3. So, what I did I subtracted date1 - date2 which gave me a variable date4 which has a TimeSpan format. I wanted to compare this with date3.AddMonths(24)
so I wanted to check how can I compare a timeSpan value with a DateTime. I feel like i cannot compare but Is there any alternative way ?