public override global::System.Data.DataTable Clone()
            {
                DataSetDataTable cln = ((DataSetDataTable)(base.Clone()));

                cln.InitVars();
                return(cln);
            }
 private void InitClass()
 {
     this.DataSetName             = "DataSetStatics";
     this.Prefix                  = "";
     this.Namespace               = "http://tempuri.org/DataSetStatics.xsd";
     this.EnforceConstraints      = true;
     this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
     this.tableDataSet            = new DataSetDataTable();
     base.Tables.Add(this.tableDataSet);
 }
 internal void InitVars(bool initTable)
 {
     this.tableDataSet = ((DataSetDataTable)(base.Tables["DataSet"]));
     if ((initTable == true))
     {
         if ((this.tableDataSet != null))
         {
             this.tableDataSet.InitVars();
         }
     }
 }
 internal DataSetRow(global::System.Data.DataRowBuilder rb) :
     base(rb)
 {
     this.tableDataSet = ((DataSetDataTable)(this.Table));
 }