0

それぞれにテキストと数字が含まれる約30個のボタンがあり、その数字を他のボタンに入れるだけです

例のように、button1.Name は test3 にする必要があります

これは可能ですか?

LastIndexOf がこのように機能しないことはわかっています。これは、達成したいアイデアを提供するためのものです。

button1 = "hello1"; //this varies in normal program
button2 = "notimportant3"; //this varies in normal program

button1.Name = "test"+button2.Name.LastIndexOf(1);
4

2 に答える 2

1
button1.Name  = string.Format("test{0}", button2.Name[button2.Name.Length - 1]);
于 2013-03-20T12:28:25.413 に答える
1
button1.Name = "test" + button2.Name[button2.Name.Length-1];

または string.Format() を使用して文字列をフォーマットします

お気に入り

button1.Name  = string.Format("test{0}", button2.Name[button2.Name.Length-1]);
于 2013-03-20T12:29:12.087 に答える