Why this? This is my code :
public class KPage { public KPage() { this.Titolo = \"example\"; } public string Titolo { get
You have a self-referential setter. You probably meant to use auto-properties:
public string Titolo { get; set; }