✅ Split Lines into Array Elements
I've got a list of common English words in the format
And so forth. How can I split this into an array of format `string[] arr = {"word1", "word2", "word3", "word4"}.
I imagine this would be done with .Split() but it's not working for me.
And so forth. How can I split this into an array of format `string[] arr = {"word1", "word2", "word3", "word4"}.
I imagine this would be done with .Split() but it's not working for me.