using System; public interface IFoo { } public class Foo { public static bool Test (T x) { return x is IFoo; } } class X { static void Main () { Foo.Test (3); } }