0

以下のコードは、入力文字列が正しい形式ではなかったことを示すエラーを生成します。なんで?

private void button7_Click(object sender, EventArgs e)
{
    string uriAddTagtoGroup = 
      string.Format("http://localhost:8000/Service/AddTagtoGroup/{group}/{tag}",
                    textBox6.Text, textBox7.Text);
    //line above says input string was not in the correct format?
}
4

1 に答える 1

5
 string.Format("http://localhost:8000/Service/AddTagtoGroup/{0}/{1}", 
                textBox6.Text, textBox7.Text);

序数を使用する

于 2012-04-07T15:48:15.943 に答える