| 123456789101112131415161718192021 |
- //
- // System.Diagnostics.EntryWrittenEventHandler.cs
- //
- // Authors:
- // Jonathan Pryor ([email protected])
- //
- // (C) 2002
- //
- using System;
- using System.Diagnostics;
- using System.Runtime.InteropServices;
- namespace System.Diagnostics {
- public delegate void EntryWrittenEventHandler(
- object sender,
- EntryWrittenEventArgs e);
- }
|