示例#1
0
文件: Dumper.cs 项目: Neo4Net/Neo4Net
 public Dumper(PrintStream output)
 {
     _operations      = new List <ArchiveOperation>();
     _progressPrinter = new ArchiveProgressPrinter(output);
 }
示例#2
0
 public Loader(PrintStream output)
 {
     _progressPrinter = new ArchiveProgressPrinter(output);
 }
示例#3
0
文件: Dumper.cs 项目: Neo4Net/Neo4Net
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @VisibleForTesting Dumper()
        internal Dumper()
        {
            _operations      = new List <ArchiveOperation>();
            _progressPrinter = new ArchiveProgressPrinter(null);
        }
示例#4
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @VisibleForTesting Loader()
        internal Loader()
        {
            _progressPrinter = new ArchiveProgressPrinter(null);
        }