Ejemplo n.º 1
0
        public ExcelRange WriteDate(DateTime date, string format = "d MMM yyyy")
        {
            var rnge = CurrentCell.WriteDate(date, format);

            MoveToNextRow();
            return(rnge);
        }
Ejemplo n.º 2
0
 public void WriteDate(DateTime date, string format = "d MMM yyyy")
 {
     CurrentCell.WriteDate(date, format);
     MoveToNextRow();
 }