2007-09-25 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / corlib / System.Threading / TimerCallback.cs
index 6e6bf48cad782eb6df17e1226801e12b126b2d13..fec50a08675ba55a1573a884811038a9d1c16a8a 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+#if NET_2_0
+using System.Runtime.InteropServices;
+#endif
 
 namespace System.Threading
 {
+#if NET_2_0
+       [ComVisible (true)]
+#endif
        public delegate void TimerCallback(object state);
 }