コード例 #1
0
 public StaticCell(int sheetIndex, string address, ICellWriter <T> writer)
 {
     Address    = address;
     CellWriter = writer;
     SheetIndex = sheetIndex;
 }
コード例 #2
0
ファイル: CellWriter.cs プロジェクト: death0400/hcs.plattform
 public ObjectCellWriter(ICellWriter <TConvert> internalWriter)
 {
     this.internalWriter = internalWriter;
 }
コード例 #3
0
 public void AddCellWriter(Type type, ICellWriter cellWriter)
 {
     _cellWriters[type] = cellWriter;
 }
コード例 #4
0
 public CellWriteException(ICellWriter <T> writer, Exception innerException)
     : base($"error when excute CellWriter {writer.GetType()} Tag:{writer.Tag}", innerException)
 {
 }