10 Temmuz 2016 Pazar

Lazy Sınıfı

Constructor
Şöyle yaparız.
class Foo
{
  Lazy<List<Row>> _rows;

  public Foo()
  {
    _rows = new Lazy(() => new List<Row>());
  }

  public List<Row> Rows
  {
    get { return _rows.Value; }
  }
}

Hiç yorum yok:

Yorum Gönder