| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // System.Data.DataRowBuilder
- //
- // Author:
- // Tim Coleman <[email protected]>
- //
- // Copyright (C) 2002 Tim Coleman
- //
- using System;
- namespace System.Data
- {
- /// <summary>
- /// A supporting class that exists solely to support
- /// DataRow and DataTable
- /// Implementation of something meaningful will follow.
- /// Presumably, what that is will become apparent when
- /// constructing DataTable and DataRow.
- /// </summary>
- public class DataRowBuilder
- {
- #region Fields
-
- DataTable table;
- #endregion
- #region Constructors
- // DataRowBuilder on .NET takes 3 arguments, a
- // DataTable and two Int32. For consistency, this
- // class will also take those arguments.
- protected internal DataRowBuilder (DataTable table, int x, int y)
- {
- this.table = table;
- }
- #endregion
- #region Properties
- protected internal DataTable Table {
- get { return table; }
- }
- #endregion
- }
- }
|