Hi
how would that c# look in VC?
There are 2 dlls coming with that. Can I simply do "add existing item"
in VS2003?
Thanks Michael
using XPlane;
public class plugin_HelloWor ld {
public static void Main() {
XPlane.Widgets. Windows.Window newWin = new
XPlane.Widgets. Windows.Window( );
newWin.setSize( 200, 500, //left, top
320, 240 //width, height
);
newWin.setDescr iptor( "Hello World" );
newWin.Create() ;
}
}
how would that c# look in VC?
There are 2 dlls coming with that. Can I simply do "add existing item"
in VS2003?
Thanks Michael
using XPlane;
public class plugin_HelloWor ld {
public static void Main() {
XPlane.Widgets. Windows.Window newWin = new
XPlane.Widgets. Windows.Window( );
newWin.setSize( 200, 500, //left, top
320, 240 //width, height
);
newWin.setDescr iptor( "Hello World" );
newWin.Create() ;
}
}
Comment