//------------------------------------------------------------------------------
// <copyright file="MethodInvoker.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
*/
namespace System.Windows.Forms {
using System.Diagnostics;
/// <include file='doc\MethodInvoker.uex' path='docs/doc[@for="MethodInvoker"]/*' />
/// <devdoc>
/// <para>Represents the method that will handle the
/// <see langword='Invoke '/> event for a method.</para>
/// </devdoc>
public delegate void MethodInvoker();
}
|