| 123456789101112131415161718192021222324 |
- //
- // System.Data.DataRowState.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Gets the state of a DataRow object.
- /// </summary>
- public enum DataRowState
- {
- Added,
- Deleted,
- Detached,
- Modified,
- Unchanged
- }
- }
|