C# 定义一个实体,集合里面在定义集合
时间: 2023-11-22 14:05:26 浏览: 140
C#实体、集合类生成器
4星 · 用户满意度95%
你可以使用以下代码定义一个实体类,并在其中包含另一个集合:
```csharp
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
public List<Address> Addresses { get; set; }
}
public class Address
{
public string Street { get; set; }
public string City { get; set; }
public string State { get; set; }
public string ZipCode { get; set; }
}
```
在上面的示例中,`Person` 类具有 `Name` 和 `Age` 属性,以及 `Addresses` 属性,该属性是一个 `List<Address>` 类型的集合。`Address` 类定义了一个地址的属性。
阅读全文