コード例 #1
0
			public void Visit(object obj)
			{
				int id = ((int)obj);
				TreeInt newNode = new TreeInt(id);
				duplicates.value = Tree.Add(((Tree)duplicates.value), newNode);
				if (newNode.Size() != 0)
				{
					this._enclosing.Add(id);
				}
			}
コード例 #2
0
 public static void Write(ByteArrayBuffer buffer, Db4objects.Db4o.Internal.TreeInt
                          tree)
 {
     Write(buffer, tree, tree == null ? 0 : tree.Size());
 }
コード例 #3
0
ファイル: TreeInt.cs プロジェクト: masroore/db4o
 public static void Write(ByteArrayBuffer buffer, TreeInt
     tree)
 {
     Write(buffer, tree, tree == null ? 0 : tree.Size());
 }
コード例 #4
0
ファイル: TreeInt.cs プロジェクト: pondyond/db4o
 public static void Write(ByteArrayBuffer buffer, TreeInt
                          tree)
 {
     Write(buffer, tree, tree == null ? 0 : tree.Size());
 }