I'm creating a program that can convert different files types to pdf.
After creating a .txt to .pdf converter, which uses System.IO.File.ReadAllLines()
I realized that I could use that same converter for .csv, which left me wondering what other file types I could theoretically support because of the ReadAllLines approach.