comparison Source/TypeBuilder/LazyInstanceAttribute.cs @ 0:f990fcb411a9

Копия текущей версии из github
author cin
date Thu, 27 Mar 2014 21:46:09 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f990fcb411a9
1 using System;
2
3 namespace BLToolkit.TypeBuilder
4 {
5 [AttributeUsage(AttributeTargets.Property)]
6 public sealed class LazyInstanceAttribute : Attribute
7 {
8 public LazyInstanceAttribute()
9 {
10 _isLazy = true;
11 }
12
13 public LazyInstanceAttribute(bool isLazy)
14 {
15 _isLazy = isLazy;
16 }
17
18 private bool _isLazy;
19 public bool IsLazy
20 {
21 get { return _isLazy; }
22 set { _isLazy = value; }
23 }
24 }
25 }