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