SetAttribute以任何方式添加多个字符串c#

时间:2017-02-10 21:35:07

标签: c#

我正在尝试在这行代码中添加1个以上的字符串

webBrowser1.Document.GetElementById("test").SetAttribute("value", classes.Class1.RandomPassword.Generate(5, 10));

我想要做的是在RandomPassword.Generate(5, 10)发生之后我想添加额外的文字,我可以将文字放入其中,例如它看起来像这样

dg#"%rgdf then my text here

2 个答案:

答案 0 :(得分:1)

您可以像这样使用+号:

webBrowser1.Document.GetElementById("test").SetAttribute("value", classes.Class1.RandomPassword.Generate(5, 10) + "MY TEXT");

答案 1 :(得分:0)

只需创建一个变量即可在其中存储内容:

operator=