c# 如何判断对象集合里面包含某个属性
时间: 2024-02-17 17:02:42 浏览: 261
04 C#面向对象编程.pdf
要判断一个对象集合是否包含某个属性,可以使用 LINQ 查询语句和反射来实现。具体实现步骤如下:
1. 使用 LINQ 查询语句从对象集合中筛选出包含指定属性的对象。
2. 使用反射获取对象的属性列表。
3. 遍历对象集合中的每个对象,判断对象是否包含指定属性。
4. 如果对象包含指定属性,则返回 true,否则返回 false。
以下是示例代码:
```csharp
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
class Program
{
static void Main(string[] args)
{
List<Person> people = new List<Person>
{
new Person { Name = "Alice", Age = 28 },
new Person { Name = "Bob", Age = 30 },
new Person { Name = "Charlie", Age = 35 },
};
bool hasAge = HasProperty(people, "Age");
Console.WriteLine("Has Age property: " + hasAge);
bool hasGender = HasProperty(people, "Gender");
Console.WriteLine("Has Gender property: " + hasGender);
Console.ReadKey();
}
static bool HasProperty(IEnumerable<object> collection, string propertyName)
{
var type = collection.GetType().GetGenericArguments()[0];
var properties = type.GetProperties();
return properties.Any(p => p.Name == propertyName);
}
}
class Person
{
public string Name { get; set; }
public int Age { get; set; }
}
```
在上面的示例中,我们定义了一个包含 Name 和 Age 两个属性的 Person 类,并创建了一个包含三个 Person 对象的 List。然后,我们分别判断该 List 是否包含 Age 和 Gender 两个属性。最终输出结果为:
```
Has Age property: True
Has Gender property: False
```
可以看到,HasProperty 方法可以判断对象集合是否包含指定的属性。
阅读全文