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

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