Mercurial > pub > bltoolkit
annotate Source/Patterns/DuckType.cs @ 2:79a04c6442bf
file name case fix
| author | cin |
|---|---|
| date | Fri, 22 Aug 2014 13:41:57 +0400 |
| 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 } |
