|
//------------------------------------------------------------------------------
// <copyright file="DataTableClearEventHandler.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">amirhmy</owner>
// <owner current="true" primary="false">markash</owner>
//------------------------------------------------------------------------------
namespace System.Data {
using System;
public delegate void DataTableClearEventHandler(object sender, DataTableClearEventArgs e);
}
|