29
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
5
public class Program
6
{
7
public static void Main()
8
{
9
IEnumerable<Lazy<MyObject>> _myObjects = Enumerable.Range(0, 5).Select(i => new Lazy<MyObject>(() => new MyObject()));
10
11
foreach (var o in _myObjects)
12
{
13
if (o.IsValueCreated) Console.WriteLine("Item has a value, shouldn't right now!");
14
}
15
16
foreach (var o in _myObjects)
17
{
18
var val = o.Value;
19
}
20
21
foreach (var o in _myObjects)
22
{
23
if (!o.IsValueCreated) Console.WriteLine("Item doesn't have a value, should cuz we went and forced creation of it!");
24
}
25
}
26
27
class MyObject { }
28
29
}
Cached Result
Achou o valor: Valor de A