以下VB代码正常工作,不会标记任何错误. strLine = strLine.Replace(strLine.LastIndexOf(","), "") 但是,相同的C#代码不会: strLine = strLine.Replace(strLine.LastIndexOf(","), ""); 这不会像它说的那样编译 The be
strLine = strLine.Replace(strLine.LastIndexOf(","), "")
但是,相同的C#代码不会:
strLine = strLine.Replace(strLine.LastIndexOf(","), "");
这不会像它说的那样编译
The best overloaded method for ‘string.Replace(string,string)’ has some invalid arguements.
为什么这在VB中有效但在C#中无效?我该如何解决这个问题?
我认为它可能与C# string.Replace doesn’t work类似,但它暗示该代码实际上是合并的.
与其他string.Replace问题相同:string.Replace (or other string modification) not working,看起来它们将实际编译,而我的不会.
LastIndexOf
返回一个整数,而不是一个字符串.
Replace
将string,string作为参数,你将它传递给int,string,因此异常’string.Replace(string,string)’的最佳重载方法有一些无效的争论.
如果您只想删除所有内容,请使用以下命令:
strLine = strLine.Replace(",", "");
根据您的代码,您可能只想替换最后一个实例,如果这是您想要的,请尝试这样做:
StringBuilder sb = new StringBuilder(strLine); sb[strLine.LastIndexOf(",")] = ""; strLine = sb.ToString();