I build a wintr. There is a static function like:
public ref class STest sealed
{
public:
static void ConLoad();
}
How to use it in javascript.
Thanks.
Let say your namespace was myLib. Then you would call it like this:
myLib.STest.conLoad();
Jeff Sanders (MSFT)