Example #1
0
 public PersistentIntegerArray(Db4objects.Db4o.Internal.Slots.SlotChangeFactory slotChangeFactory
                               , ITransactionalIdSystem idSystem, int[] arr) : base(idSystem)
 {
     _slotChangeFactory = slotChangeFactory;
     _ints = new int[arr.Length];
     System.Array.Copy(arr, 0, _ints, 0, arr.Length);
 }
Example #2
0
		public PersistentIntegerArray(Db4objects.Db4o.Internal.Slots.SlotChangeFactory slotChangeFactory
			, ITransactionalIdSystem idSystem, int[] arr) : base(idSystem)
		{
			_slotChangeFactory = slotChangeFactory;
			_ints = new int[arr.Length];
			System.Array.Copy(arr, 0, _ints, 0, arr.Length);
		}
Example #3
0
 public PersistentIntegerArray(Db4objects.Db4o.Internal.Slots.SlotChangeFactory slotChangeFactory
                               , ITransactionalIdSystem idSystem, int id) : base(idSystem)
 {
     _slotChangeFactory = slotChangeFactory;
     SetID(id);
 }
Example #4
0
		public PersistentIntegerArray(Db4objects.Db4o.Internal.Slots.SlotChangeFactory slotChangeFactory
			, ITransactionalIdSystem idSystem, int id) : base(idSystem)
		{
			_slotChangeFactory = slotChangeFactory;
			SetID(id);
		}