git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5225 626c5289-ae23-0410-ae9c-e8d60b6d4f22
10 lines
204 B
C#
10 lines
204 B
C#
using System;
|
|
|
|
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();
|
|
}
|
|
}
|