示例#1
0
        public static int Size(Db4objects.Db4o.Foundation.List4 list)
        {
            int counter = 0;

            Db4objects.Db4o.Foundation.List4 nextList = list;
            while (nextList != null)
            {
                counter++;
                nextList = ((Db4objects.Db4o.Foundation.List4)nextList._next);
            }
            return(counter);
        }
示例#2
0
 public List4(Db4objects.Db4o.Foundation.List4 next, object element)
 {
     _next    = next;
     _element = element;
 }
示例#3
0
		public List4(Db4objects.Db4o.Foundation.List4 next, object element)
		{
			_next = next;
			_element = element;
		}