C# - Programming Language
This course covers the basics of programming in C#. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

Class Methods

Lesson 27
Author : 🦒
Last Updated : November, 2017


Code

Copypublic class Book{
     public string title;
     public string author;

     public void ReadBook(){
       Console.WriteLine($"Reading {this.title} by {this.author}");
     }
}