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