我想用「Random rnd = new Random();」C#無法從'int'轉換爲'string'
public int dzien;
private void generator_Tick(object sender, EventArgs e)
{
Random rnd = new Random();
dzien = rnd.Next(1, 11);
webBrowser1.Document.GetElementById("birthDateDay").SetAttribute("value", dzien);
}
當我想要運行的程序,我得到錯誤:
不能從「詮釋」到「字符串」
這符合「webBrowser1 ......」轉化的「dzien」 。
你幾乎肯定不希望創建一個新的隨機每個刻度 – Plutonix
請務必詢問未來的問題之前閱讀[MCVE]指導 - iesample代碼,這個問題應該是單行:'字符串valueForSetAttribute = 42 ;'(這樣做不會引起SO上的主題問題,因爲搜索帖子的確切標題或錯誤消息會給你一個答案 - https://www.bing.com/search?q=C%23+cannot + convert + from +%27int%27 + to +%27string%27) –