Mercurial > pub > bltoolkit
annotate Source/Patterns/DuckType.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 | |
3 namespace BLToolkit.Patterns | |
4 { | |
5 /// <summary> | |
6 /// Reserved to internal BLToolkit use. | |
7 /// </summary> | |
8 public abstract class DuckType | |
9 { | |
10 [CLSCompliant(false)] | |
11 protected object[] _objects; | |
12 public object[] Objects | |
13 { | |
14 get { return _objects; } | |
15 } | |
16 | |
17 internal void SetObjects(params object[] objs) | |
18 { | |
19 _objects = objs; | |
20 } | |
21 } | |
22 } |