swig/Examples/test-suite/csharp/imports_runme.cs
2004-02-24 21:06:54 +00:00

11 lines
228 B
C#

using System;
using importsNamespace;
public class runme
{
static void Main() {
B b = new B();
b.hello(); //call member function in A which is in a different SWIG generated library.
b.bye();
}
}