//查询BMI值大于25的人var result = from c in matrix where c.BmiValue > 25 select c;//显示名称foreach (string item in (from c in result select c.name)) {MessageBox.Show (item);}