//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Microsoft
// Microsoft
//------------------------------------------------------------------------------
namespace System.Data {
using System;
using System.Diagnostics;
public sealed class DataTableNewRowEventArgs : EventArgs {
private readonly DataRow dataRow;
public DataTableNewRowEventArgs(DataRow dataRow) {
this.dataRow = dataRow;
}
public DataRow Row{
get {
return dataRow;
}
}
}
}