Class Methods
Lesson 27Author : 🦒
Last Updated : November, 2017
Code
public class Book{
public string title;
public string author;
public void ReadBook(){
Console.WriteLine($"Reading {this.title} by {this.author}");
}
}