我可以执行以下操作以从单词末尾删除特定字符串吗?
public static HashSet<string> stringtoremove = new HashSet<string>
...............
.................
public static string stepone(this string word)
{
if (stringtoremove(word.EndsWith))
{
word = ..................................;
}
return word;
}
我试过了,但它不起作用。我错过了我的代码中的某些内容吗?提前致谢。