摘要: 一、定义和使用非常相似: 1.定义和使用: public struct Student { string Name; int Age; } public class Student2 { string Name; int Age; } Student student = new Student(); 阅读全文