Mercurial > pub > bltoolkit
annotate Source/Mapping/MapValue.cs @ 3:1ef98bd70424
!bug 100 +3h
Исправление проблемы BLToolkit + mono 3.4
| author | cin |
|---|---|
| date | Fri, 22 Aug 2014 17:34:46 +0400 |
| parents | f990fcb411a9 |
| children |
| rev | line source |
|---|---|
| 0 | 1 namespace BLToolkit.Mapping |
| 2 { | |
| 3 public class MapValue | |
| 4 { | |
| 5 public MapValue(object origValue, params object[] mapValues) | |
| 6 { | |
| 7 _origValue = origValue; | |
| 8 _mapValues = mapValues; | |
| 9 } | |
| 10 | |
| 11 private readonly object _origValue; | |
| 12 public object OrigValue | |
| 13 { | |
| 14 get { return _origValue; } | |
| 15 } | |
| 16 | |
| 17 private readonly object[] _mapValues; | |
| 18 public object[] MapValues | |
| 19 { | |
| 20 get { return _mapValues; } | |
| 21 } | |
| 22 } | |
| 23 } |
