Skip to content

Instantly share code, notes, and snippets.

@marek-safar
Created March 30, 2012 17:54
Show Gist options
  • Save marek-safar/2253373 to your computer and use it in GitHub Desktop.
Save marek-safar/2253373 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
using System.Linq;
interface IMethod
{
}
class C
{
public IEnumerable<IEnumerable<IMethod>> GetExtensionMethods()
{
List<List<IMethod>> extensionMethods = null;
return extensionMethods ?? Enumerable.Empty<IEnumerable<IMethod>>();
}
public static void Main ()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment