class Test { public void Foo (V v, V w) { } } class X { static void Main () { Test test = new Test (); test.Foo (8, 9); } }