Exportar NuGet Package

Biblioteca que gera uma planilha excel a partir de uma lista de objeto.

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");
}
}
".




Got any Exportar Question?





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)



Tags



STATS

must-have-score

avg-downloads-per-day

0

days-since-last-release

1916