public string Titel { get; set; }
public string Skribent { get; set;}
public string Boktyp { get; set;}
public Bok(string title, string skribent, string boktyp)
public override string ToString()
return String.Format("Title : {0}\nAuthor : {1}\nPublished : {2}", Titel, Skribent, Boktyp);
Bok myBook = new Bok("Mi vida querida", "Alice Munro", "novellsamling");
Console.WriteLine(myBook);