I have some folder that might contain a lot of files, I want to know what's the maximum size that string array can hold, I mean how many file names the array:
string[] files=Directory.GetFiles(@"c:\Dir\");
can hold?
Note that I'm asking about string array, not something else please.