using System; public class Foo { static void GenericLock (T t) where T : class { lock (t) { } } public static void Main () { GenericLock ("s"); } }