Ejemplo n.º 1
0
 static OutputParser()
 {
     _parserCore = new ParserCore <Output>(Parse, "output");
 }
Ejemplo n.º 2
0
 static InputParser()
 {
     _parserCore = new ParserCore <Input>(Parse, "input");
 }
Ejemplo n.º 3
0
 static TransactionParser()
 {
     _parserCore = new ParserCore <Transaction>(Parse, "transaction");
 }
Ejemplo n.º 4
0
 static BlockFileParser()
 {
     _parserCore = new ParserCore <BlockFile>(Parse, "block file");
 }
Ejemplo n.º 5
0
 static BlockParser()
 {
     _parserCore = new ParserCore <Block>(Parse, "block");
 }
Ejemplo n.º 6
0
 static VarIntParser()
 {
     _parserCore = new ParserCore <VarInt>(Parse, "variable integer");
 }