2
0

DataRowVersion.cs 304 B

12345678910111213141516171819202122
  1. //
  2. // System.Data.DataRowVersion.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Describes the version of a DataRow.
  13. /// </summary>
  14. public enum DataRowVersion
  15. {
  16. Current,
  17. Default,
  18. Original,
  19. Proposed
  20. }
  21. }