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?
}
!ありがとうございました。 –