public static class StringHelper
{
public static string HyphenAndSpaceReplacer(this string s)
{
string newString = s;
newString.Replace(char.Parse(" ", "_"));
newString.Replace(char.Parse("-", "_"));
return newString;
}
}
錯誤:無重載方法錯誤
- 沒有過載對方法 '解析' 取 '2' 參數
- 沒有過載對方法 '替換' 取 '1' 的參數
我試圖用上面的代碼片段替換空格和連字符與文件名中的下劃線,但我不斷收到這些錯誤。請告訴我我錯過了什麼,或者它是完全錯誤的。
你也可以連接在一起.Replace()調用,如果你喜歡: newString = newString.Replace(」」, 「_」)。REPLACE( 「 - 」 ,「_」); – scwagner
這工作thanx很多! – jason