在方法里   public int BookCount()
        {
            return al.Count;
        }   
可是主函数里
   
            Console.WriteLine("You have {0} in the store :\n ", bookStore.BookCount);
出现了两个问题:1,与“System.Console.WriteLine(string, object)”最匹配的重载方法具有一些无效参数
                2,参数“2”: 无法从“方法组”转换为“object”
请问这是什么情况