Console.WriteLine("Enter the page that you would like to set the bookmark on: ");
SetBookmarkPage(int.Parse(Console.ReadLine));
このスレッドのトピックのエラーメッセージを表示するのはint.Parse(string)の部分です。私が何をすべきか本当に理解していません、私は文字列をintに解析し、それをSetBookmarkPageメソッドで送信しています、私は何が欠けていますか?SetBookmarkPageは次のようになり、同じクラスに含まれています。
private void SetBookmarkPage(int newBookmarkPage) {}