File: services\timers\system\timers\ElapsedEventHandler.cs
Project: ndp\fx\src\System.csproj (System)
//------------------------------------------------------------------------------
// <copyright file="ElapsedEventHandler.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Timers {
 
    using System;
    using System.Diagnostics;
    
    public delegate void ElapsedEventHandler(object sender, ElapsedEventArgs e);
}