Konstruktor Package
Inicjuje nowe wystąpienie Package klasy
Przestrzeń nazw: Microsoft.SqlServer.Dts.Runtime
Zestaw: Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)
Składnia
'Deklaracja
Public Sub New
'Użycie
Dim instance As New Package()
public Package()
public:
Package()
new : unit -> Package
public function Package()
Przykłady
Poniższy przykład kodu tworzy nowy 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