| 12345678910111213141516171819202122 |
- //
- // System.Data.DataRowVersion.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Describes the version of a DataRow.
- /// </summary>
- public enum DataRowVersion
- {
- Current,
- Default,
- Original,
- Proposed
- }
- }
|