show/hide this revision's text 2 Removed a bad code example

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;
}
show/hide this revision's text 1

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 code
   }
   return s;
}

or

List<string> GetTheStuff()
{
   List<string> s = new List<string();
   if (somePredicarte())
   {
      // more code
   }
   return s;
}