struct Books{ string author; string title; } class StructureExample{ static void Main(String[] args){ Books b1 = new Books(); b1.author = "J.K. Rowling"; b1.title = "Harry Potter"; } }