string[] hidenumber = HiddenField1.Value.Split(',');
string[] phonenumber = txtPhoneNum.Text.Trim().Split('\r');

string[] moble = new string[hidenumber.Length + phonenumber.Length];

int index = 0;
for (int i = 0; i < hidenumber.Length; i++) {
moble[index]
= hidenumber[i];
index
++;
}

for (int j = 0; j < phonenumber.Length; j++) {
moble[index]
= phonenumber[j];
index
++;
}

相关文章:

  • 2021-10-30
  • 2022-12-23
  • 2021-06-23
  • 2021-09-24
  • 2021-08-07
  • 2022-12-23
  • 2021-09-05
猜你喜欢
  • 2022-12-23
  • 2021-09-01
  • 2022-02-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案