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