単語の末尾から特定の文字列を削除するために、次のようなことを行うことはできますか?
public static HashSet<string> stringtoremove = new HashSet<string>
...............
.................
public static string stepone(this string word)
{
if (stringtoremove(word.EndsWith))
{
word = ..................................;
}
return word;
}
試しましたが、うまくいきません。コードに何かが足りませんでしたか?前もって感謝します。