// A generic method may also use the type parameters // from its enclosing type. class Stack { public static void Hello (S s, T t) { } } class X { Stack stack; static void Main () { } }