コード例 #1
0
        public void HistoryLoaderTest()
        {
            const string history = @"Z:\windowsshare\history.bin";

            if (!File.Exists(history))
            {
                return;
            }
            var loader = new HistoryLoader(StReader.FromFile(history));

            loader.ParseFast((header, state, txns) => true);
        }