Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
public class Book {
public string Title { get; set; }
public string Author { get; set; }
public Book(string title, string author) {
Title = title;
Author = author;
}
}
class Program {
static void Main() {
Book book = new Book("1984", "George Orwell");
Console.WriteLine($"{book.Title} by {book.Author}");
}
}Coding works best on desktop or with an external keyboard.