Skip to content

Instantly share code, notes, and snippets.

@hvitorino
Created March 13, 2012 20:51
Show Gist options
  • Select an option

  • Save hvitorino/2031495 to your computer and use it in GitHub Desktop.

Select an option

Save hvitorino/2031495 to your computer and use it in GitHub Desktop.
covariancia
Isso não compila:
Func<int> a = null;
Func<object> b = a;
Isso compila:
Func<string> a = null;
Func<object> b = a;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment