Package 생성자

Initializes a new instance of the Package class.

네임스페이스:  Microsoft.SqlServer.Dts.Runtime
어셈블리:  Microsoft.SqlServer.ManagedDTS(Microsoft.SqlServer.ManagedDTS.dll)

구문

‘선언
Public Sub New
‘사용 방법
Dim instance As New Package()
public Package()
public:
Package()
new : unit -> Package
public function Package()

The following code example creates a new Package.

using System;
using Microsoft.SqlServer.Dts.Runtime;
namespace Microsoft.Samples.SqlServer.Dts
{
    public static void Main(string []args)
    {
        Package p = new Package();
        //
        // Access methods and properties of the package here.
        //
    }
}
Imports System
Imports Microsoft.SqlServer.Dts.Runtime
Namespace Microsoft.Samples.SqlServer.Dts
    Public Shared  Sub Main(ByValstring()args)
        Dim p As Package =  New Package() 
        '
        ' Access methods and properties of the package here.
        '
    End Sub
End Namespace

참고 항목

참조

Package 클래스

Microsoft.SqlServer.Dts.Runtime 네임스페이스