Skip to content

FluentExtensions 1.6

Latest
Compare
Choose a tag to compare
@D-Diyare D-Diyare released this 08 Mar 15:16
· 2 commits to master since this release

Newly added extensions

// Converts Generic type into CSV file.
void ToCSV<T>(this T entity, string path, bool append = false);

// Converts Generic type into CSV file asynchronously
Task ToCSVAsync<T>(this T entity, string path, bool append = false);

// Converts Generic list type into CSV file asynchronously
void ToCSV<T>(IEnumerable<T> entities, string path, bool append = false);

// Converts Generic list type into CSV file asynchronously
Task ToCSVAsync<T>(IEnumerable<T> entities, string path, bool append = false);