Skip to content

Instantly share code, notes, and snippets.

@jagregory
Created February 14, 2012 10:27
Show Gist options
  • Select an option

  • Save jagregory/1825592 to your computer and use it in GitHub Desktop.

Select an option

Save jagregory/1825592 to your computer and use it in GitHub Desktop.
Ways of handling null collections and AddRange
// a)
if (items != null)
collection.AddRange(items)
// b)
collection.AddRange(items ?? new Foo[0])
@RodionOrets
Copy link
Copy Markdown

@leniel How do you call this extension method on self if self is null? It seems like it would cause some exception))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment