File: system\runtime\interopservices\windowsruntime\windowsfoundationeventhandler.cs
Project: ndp\clr\src\bcl\mscorlib.csproj (mscorlib)
// ==++==
// 
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// ==--==
//
// <OWNER>ShawnFa</OWNER>
 
using System;
 
namespace System.Runtime.InteropServices.WindowsRuntime
{
    // WindowsFoundationEventHandler<T> a copy of the definition for the Windows.Foundation.EventHandler<T> delegate
    [Guid("9de1c535-6ae1-11e0-84e1-18a905bcc53f")]
    [WindowsRuntimeImport]
    internal delegate void WindowsFoundationEventHandler<T>(object sender, T args);
}