30
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
.ToArray();
11
12
foreach (var o in _myObjects)
13
{
14
if (o.IsValueCreated) Console.WriteLine("Item has a value, shouldn't right now!");
15
}
16
17
foreach (var o in _myObjects)
18
{
19
var val = o.Value;
20
}
21
22
foreach (var o in _myObjects)
23
{
24
if (!o.IsValueCreated) Console.WriteLine("Item doesn't have a value, should cuz we went and forced creation of it!");
25
}
26
}
27
28
class MyObject { }
29
30
}
Cached Result
Achou o valor: Valor de A