If I understand correctly, a small amount of memory will be allocated for the string arrays. You code essentially requires a generic list to be created anyway, so why not just return that?
List<string> GetTheStuff()
{
List<string> s = null;
if (somePredicarte())
{
s = new List<string();
// more
[EDIT]Removed the version of the code }
that returned a null value. The other answers advising against null return s;
}
orvalues in this circumstance appear to be the better advice[/EDIT]
List<string> GetTheStuff()
{
List<string> s = new List<string();
if (somePredicarte())
{
// more code
}
return s;
}
