Example #1
0
 public HexToolTipContentCreatorImpl(HexFieldFormatterFactory hexFieldFormatterFactory)
 {
     if (hexFieldFormatterFactory == null)
     {
         throw new ArgumentNullException(nameof(hexFieldFormatterFactory));
     }
     this.hexFieldFormatterFactory = hexFieldFormatterFactory;
     writerStateList = new List <WriterState>();
     CreateNewWriter();
 }
 HexToolTipContentCreatorFactoryImpl(HexFieldFormatterFactory hexFieldFormatterFactory) => this.hexFieldFormatterFactory = hexFieldFormatterFactory;