Using LINQ: How To Return Array Of Properties from

2019-09-21 16:15发布

问题:

Here is a Basic Class with TheProperty in question:

class BasicClass {
  public BasicClass() {
    TheProperty = new Object();
    Stamped = DateTime.Now;
  }
  public object TheProperty { get; set; }
  public DateTime Stamped { get; private set; }
}

Here is the Basic List:

class BasicList {
  private List<BasicClass> list;
  public BasicList() {
    list = new List<BasicClass>();
  }
  public BasicClass this[object obj] {
    get { return list.SingleOrDefault(o => o.TheProperty == obj); }
  }
  public void Add(BasicClass item) {
    if (!Contains(item.TheProperty)) {
      list.Add(item);
    }
  }
  public bool Contains(object obj) {
    return list.Any(o => o.TheProperty == obj); // Picked this little gem up yesterday!
  }
  public int Count { get { return list.Count; } }
}

I'd like to add a class to BasicList that will return an array of items.

I could write it like this, using traditional C#:

public object[] Properties() {
  var props = new List<Object>(list.Count);
  foreach (var item in list) {
    props.Add(item.TheProperty);
  }
  return props.ToArray();
}

...but how would I write that using a LINQ or Lambda query?

回答1:

return list.Select(p=>p.TheProperty).ToArray()


标签: c# linq lambda