我想知道 List<> 泛型中的哪个方法(如果有)指示对象的数量是否满足特定要求,例如:
List<string> example = new List<string>();
if (example."put the method here" = 0)
{
Console.WriteLine("There are no objects in this list");
}
else if (example."put method here" > 0)
{
Console.WriteLine("This list contains objects");
在示例代码中,我想知道此列表是否包含 0 个对象,然后控制台写入特定文本,如果列表包含超过 0 个项目/对象,则控制台写入另一个文本。