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);