A
AC
I've put some strings into a stack, and now I want to convert the stack to an string based array. Here's what I'm trying to do (this returns a cast error)
string[] results = (string)resultStack.ToArray();
I've tried casting it as a string, an array of strings... no luck. ideas?
string[] results = (string)resultStack.ToArray();
I've tried casting it as a string, an array of strings... no luck. ideas?