Skip to content

Instantly share code, notes, and snippets.

@VladimirReshetnikov
Created February 15, 2014 21:34
Show Gist options
  • Save VladimirReshetnikov/9025514 to your computer and use it in GitHub Desktop.
Save VladimirReshetnikov/9025514 to your computer and use it in GitHub Desktop.
using System;
class C
{
void Foo<T>(T x)
{
if (x is Exception)
{
var y = (x as Exception).GetBaseException();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment