我的string.Format c#错误帮助我

时间:2015-07-23 02:44:35

标签: c# string.format

我的代码

 cmd.CommandText = string.Format("INSERT INTO cupom(Codigo, Moeda) VALUES ('{0}','{1}')",textBox2.Text);

打印:enter link description here

求助我

1 个答案:

答案 0 :(得分:1)

第二个输入需要第二个项目。像这样

 cmd.CommandText = string.Format("INSERT INTO cupom(Codigo, Moeda) VALUES ('{0}','{1}')",textBox2.Text, textBox1.Text);

当您需要2时,您只有1个额外参数。