Windows应用程序中自动递增ID

Windows应用程序中自动递增ID

本文介绍了如何在C#.NET Windows应用程序中自动递增ID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想像这样增加员工ID
EMP001
EMP002
EMP003

I want to increment the Employee ID Like this
EMP001
EMP002
EMP003

推荐答案

string empID = "";
      for (int i = 0; i < 1000; i++)
      {

          if (i.ToString().Length == 1)
          {
              empID = "EMP00" + i.ToString();
          }
          else if (i.ToString().Length == 2)
          {
              empID = "EMP0" + i.ToString();
          }
          else if (i.ToString().Length == 3)
          {
              empID = "EMP" + i.ToString();
          }
          listBox1.Items.Add(empID);
      }



这篇关于如何在C#.NET Windows应用程序中自动递增ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 14:53