I have an array of randomized music files. Is there a way to save an array in my .exe without creating a save file?
This is my array string[] playlist = new string[] { };
It is created under public partial class frmMain : Form
when the program starts up.
I tried looking over How do I save an array of objects in a C# ASP.Net Sesssion? but i don't understand anything there.