2012-06-21 82 views
-1

我想創建一個新的庫(.dll)用於我的SSIS項目。我沒有任何創建這類項目的經驗。所以請耐心等待。vb.net程序調試錯誤

當我嘗試調試程序時,它拋出以下錯誤 enter image description here

什麼是調試下面的代碼的最佳方式。我知道這可能是錯的,但我正在努力學習。

Imports Microsoft.SqlServer.Dts.Runtime 
Imports Microsoft.SqlServer.Server 
Imports System.IO 
Imports System 
Imports System.Net 

'Imports Microsoft.SqlServer.Dts.Runtime 
'Imports System.Net.NetworkInformation 
'Imports System.Text.RegularExpressions 
'Imports System.IO 
'Imports System.Net.Mail 
'Imports System.Net 

Public Class Logging 
    Inherits LogProviderBase 

End Class 

感謝您的幫助。

+0

你得到了什麼錯誤? – Trevor

+0

我發佈的截圖是我得到的錯誤。 – rvphx

回答

2

你不能只打F5和運行一個DLL庫。它只能用於其他應用程序。你可以建立這個項目,它會告訴你是否有任何明顯的錯誤。

大多數人都有一個測試應用程序,在那裏練習類庫應用程序給他們一個想法,如果有任何問題。

類似問題:"A project with an Output type of Class Library cannot be started directly"

+0

就他而言,您需要在該解決方案中創建另一個項目並添加對其的引用並導入您想要使用的名稱空間。然後你可以測試你的庫中的東西。 – Yatrix

+0

好信息:感謝您加入Yatrix –