예제 #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);
        }