c#:添加两个字符串

时间:2010-04-13 05:06:32

标签: c#

我在做:

html = new WebClient().DownloadString(
        "http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=" + biocompany);

我收到了错误:

Error   1   Operator '&' cannot be applied to operands of type 'string'
and 'string'

但我甚至没有使用& !

请帮忙!

2 个答案:

答案 0 :(得分:6)

您发布的代码已成功执行。你的问题出在其他地方。

您获得的编译器错误将准确指出哪条线路出现故障,并且它不是您发布的线路。期待开始。

确保您的报价正确无误。例如,以下行将导致您正在报告的错误:

html = new WebClient().DownloadString(
    "http://www.google.com/search?sourceid=chrome"&"ie=UTF-8&q=" + biocompany);

答案 1 :(得分:2)

在第一次引用(“)之前尝试@,如下所示:

html = new WebClient().DownloadString(@"http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=" + biocompany);