public string CreateTenderCode() { int tenderCountToday = this.GetTenderCountToday(); string prjCode = "T" + this.CreateCode(tenderCountToday); int num2 = 0; while (TenderInfo.IsSameCode(prjCode)) { num2++; prjCode = "T" + this.CreateCode(tenderCountToday + num2); } return(prjCode); }