startit/Emne 3/Books/Books/Program.cs
Geir Okkenhaug Jerstad 03716695f9 Book class
2024-11-25 10:29:48 +01:00

24 lines
495 B
C#

namespace Books
{
public class Book
{
public string Title { get; set; }
public string Author { get; set; }
public void ShowInfo()
{
Console.WriteLine($"Title: {Title}, Author: {Author}");
}
}
class Program
{
static void Main(string[] args)
{
Book book = new Book();
book.Author = "John Doe";
book.Title= "Hello World!";
book.ShowInfo();
}
}
}