I have two masked TextBox controls and was wondering how I\'d go about getting the time in each one and then converting the difference into milliseconds. Like, say in tb1 I
Try:
DateTime first; DateTime second; int milliSeconds = (int)((TimeSpan)(second - first)).TotalMilliseconds;