我在 C# 中遇到了字符串问题。我有以下字符串:
这里 Fonts 是包含谷歌字体名称的字符串数组:
字符串字体链接 =
"<link rel='stylesheet' id='fontrequest' href='http://fonts.googleapis.com/css?family='" + Fonts + "type='text/css' media='all'>";
此字符串在浏览器中呈现错误:
<link rel="stylesheet" id="fontrequest" href="http://fonts.googleapis.com/css?family=" times+new+roman|offside|dangrek|days+onetype="text/css" media="all">
问题在于 href 属性值。我该如何解决这个问题?