* Timer.cs: Call the callback immediately if dueTime is 0. Fixes #56728. svn path=/trunk/mcs/; revision=25245
@@ -1,3 +1,8 @@
+2004-04-09 Zoltan Varga <[email protected]>
+
+ * Timer.cs: Call the callback immediately if dueTime is 0. Fixes
+ #56728.
2004-04-08 Jackson Harper <[email protected]>
* ReaderWriterLock.cs: Fix tyop
@@ -58,6 +58,8 @@ namespace System.Threading
if (disposed)
return false;
}
+ else
+ callback (state);
return true;