In the previous post, I mentioned how to convert DATETIME to TIMESPAN.
Now if the requirement is to convert DATETIME TO TIMESPAN, we can do that in one line:
DateTime dt="XXX";
TimeSpan TS = new TimeSpan(dt.Now.Ticks);
This will convert the DateTime to TimeSPan.
Varun
0 comments:
Post a Comment