git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5740 626c5289-ae23-0410-ae9c-e8d60b6d4f22
20 lines
386 B
C#
20 lines
386 B
C#
// varargs test
|
|
|
|
using System;
|
|
using varargsNamespace;
|
|
|
|
public class varargs_runme {
|
|
|
|
public static void Main() {
|
|
|
|
if (varargs.test("Hello") != "Hello")
|
|
throw new Exception("Failed");
|
|
|
|
Foo f = new Foo("Greetings");
|
|
if (f.str != "Greetings")
|
|
throw new Exception("Failed");
|
|
|
|
if (f.test("Hello") != "Hello")
|
|
throw new Exception("Failed");
|
|
}
|
|
}
|