2022-09-19 【C#】文字列の最初の1文字を削除する C# 文字列の最初の1文字を削除する Removeメソッドを使うことでできます! string str = "abc"; str = str.Remove(0, 1); // "abc" → "bc"