Info
Version: | 1.0.5 |
Author(s): | Washington Silva Santos |
Last Update: | Saturday, January 19, 2019 |
.NET Fiddle: | Create the first Fiddle |
NuGet Url: | https://www.nuget.org/packages/Exportar |
Install
Install-Package Exportar
dotnet add package Exportar
paket add Exportar
Exportar Download (Unzip the "nupkg" after downloading)
Dependencies
- EPPlus(>= 4.5.3)
Tags
Super Prático.
"
//Trecho de código de exemplo
public class Pessoa
{
public int Id { get; set; }
public string Nome { get; set; }
}
public class Program
{
static void Main(string[] args)
{
Pessoa pessoa = new Pessoa();
pessoa.Id = 1;
pessoa.Nome = "Washington Silva Santos";
List lstPessoas = new List'();
lstPessoas.Add(pessoa);
//após adicionar use o namespace abaixo
Exportar.Core.XLSX.GerarArquivo(lstPessoas, @"C:\Users\Washington\Desktop\ArquivoGerado.xlsx");
}
}
".