1
我有這個小的應用程序從一個book複製:如何解決JScript.NET程序集引用錯誤JS1259?
import System;
import System.Drawing;
import System.Windows.Forms;
public class BasicForm extends Form
{
public function BasicForm()
{
InitializeComponent();
}
private function InitializeComponent() : void
{
this.Text = "Basic Windows Forms";
this.Height = 400;
this.Width = 500;
this.WindowState = FormWindowState.Normal;
this.StartPosition = FormStartPosition.CenterScreen;
}
public STAThreadAttribute() static function Main(Args:String[]) : void
{
Application.Run(new BasicForm());
}
}
BasicForm.Main(Environment.GetCommandLineArgs());
當我試着使用JSC編譯它,我得到這個錯誤:
error JS1259: A referenced assembly depends on another assembly that is not referenced or could not be found
是什麼造成這個錯誤,我怎麼能解決它?