2012-07-26 69 views
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

是什么造成这个错误,我怎么能解决它?

回答

6

导入“Accessibility”命名空间。

当 导入辅助功能名称空间时,使用jsc.exe v2.0.50727和v4.0.30319编译代码。

没有它的编译器生成以下内容:

 
Microsoft (R) JScript Compiler version 8.00.50727 
for Microsoft (R) .NET Framework version 2.0.50727 
Copyright (C) Microsoft Corporation 1996-2005. All rights reserved. 

error JS1259: A referenced assembly requires you to also reference 'Accessibility, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' 

OR

 
Microsoft (R) JScript Compiler version 10.00.30319 
for Microsoft (R) .NET Framework version 4.0.30319 
Copyright (C) Microsoft Corporation. All rights reserved. 

error JS1259: A referenced assembly depends on another assembly that is not referenced or could not be found 

import Accessibility;

相关问题