16 lines
225 B
C#
Raw Normal View History

// Compiler options: -r:gtest-017-lib.dll
public class X
{
public static void Foo (Stack stack)
{
stack.Hello<string> ("Hello World");
}
public static void Main ()
{
Stack stack = new Stack ();
Foo (stack);
}
}