Пример #1
0
 public FromAbiHelper(global::ABI.System.Collections.Generic.IReadOnlyList <T> vectorView)
 {
     _vectorView = vectorView;
     _enumerable = new ABI.System.Collections.Generic.IEnumerable <T>(vectorView.ObjRef);
 }
Пример #2
0
 public FromAbiHelper(global::ABI.System.Collections.Generic.IReadOnlyDictionary <K, V> mapView)
 {
     _mapView    = mapView;
     _enumerable = new ABI.System.Collections.Generic.IEnumerable <global::System.Collections.Generic.KeyValuePair <K, V> >(mapView.ObjRef);
 }
 public FromAbiHelper(global::ABI.System.Collections.Generic.IEnumerable <T> iterable)
 {
     _iterable = iterable;
 }
Пример #4
0
 public FromAbiHelper(global::ABI.System.Collections.Generic.IList <T> vector)
 {
     _vector     = vector;
     _enumerable = new ABI.System.Collections.Generic.IEnumerable <T>(vector.ObjRef);
 }
Пример #5
0
 public FromAbiHelper(global::ABI.System.Collections.Generic.IDictionary <K, V> map)
 {
     _map        = map;
     _enumerable = new ABI.System.Collections.Generic.IEnumerable <global::System.Collections.Generic.KeyValuePair <K, V> >(map.ObjRef);
 }