Group,
I’m looking for new and fun ways to write an array of strings to a .txt file.
-This file will be rewritten every time its called and saved.
-The file name will be dynamic enough that the .exe will know what string goes where.
For example:
~/someFile.exe "fileName" "string|string|string|"
-In this example someFile.exe is called to write strings to this “fileName”.
Any suggestions?
Chad
You could use the File.WriteAllLines method:
And then call:
someFile.exe "fileName" "string|string|string|"