increment the number of pages of a book by the number of pages enter by the user using operator overloading
using System;
class Book
{
private string name;
private int pages;
public Book(string name, int pageCount)
{
this.name = name;
this.pages = pageCount;
}
public int GetPageCount()
{
return pages;
}
public static Book operator + (Book book, int pagesCount)
{
book.pages += pagesCount;
return book;
}
}
class Program
{
public static void Main()
{
Book boo = new Book("The Witch", 352);
Console.WriteLine(boo.GetPageCount());
Console.Write("Enter the number of additional pages: ");
int additionalPageCount = Convert.ToInt32(Console.ReadLine());
boo += additionalPageCount;
Console.WriteLine(boo.GetPageCount());
}
}