C# Tutorial - Lazy Initialization

preview_player
Показать описание
c# lazy

In this session we will learn:
- Introduction
- Basic Lazy Initialization
- Summary
Рекомендации по теме
Комментарии
Автор

using System;
namespace LazyInit
{
class Test
{
int[] _array;
public Test()
{
Console.WriteLine("Test");
_array = new int[5];
}
public int Length
{
get { return _array.Length; }
}
}
class Program
{
static void Main(string[] args)
{
Lazy<Test> lazy = new Lazy<Test>();
= {0}", lazy.IsValueCreated);
Test test = lazy.Value;
= {0}", lazy.IsValueCreated);
Console.ReadKey();
}
}
}

tomd
Автор

Lo entendería mas si estuviera en español! jajaja

ricardogalindoluna