📅  最后修改于: 2022-03-11 14:48:50.804000             🧑  作者: Mango
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";
}
}