|
|
От: |
mitix
|
|
| Дата: | 23.05.08 11:34 | ||
| Оценка: | |||
public class A
{
public int Property { get; set; }
}
...
public void Method()
{
List<A> list = new List<A>();
//далее list забивается значениями
}int min = list.Min(a => a.Property);