Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using MVC3 webgrid. I am displaying the data in a webgrid and before displaying the data I have to calculate the number of days between start date and end date. I am using the following code.

  int  noOfAbsenceDays = item.AbsEnd?(item.AbsEnd.Subtract(item.AbsStart)).Days:               (item.DateTime.Now.Subtract(item.AbsStart)).Days;

It complains about this error

   Cannot implicitly convert type 'System.DateTime' to 'bool'

I don't know where it is coming from?

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

You can try the following code:

int noOfAbsenceDays = item.AbsEnd == null ? (item.AbsEnd.Subtract(item.AbsStart)).Days : (item.DateTime.Now.Subtract(item.AbsStart)).Days;

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.