次の方法で共有


ForEachFromVarEnumerator.VariableName プロパティ

定義

列挙する変数の名前を取得します。値の設定も可能です。

public:
 property System::String ^ VariableName { System::String ^ get(); void set(System::String ^ value); };
public string VariableName { get; set; }
member this.VariableName : string with get, set
Public Property VariableName As String

プロパティ値

列挙する変数の名前を含む文字列。

実装

注釈

Foreach From Variable 列挙子で使用する変数は、Object 型であることが必要です。 変数内に格納するオブジェクトでは、次のいずれかのインターフェイスを実装する必要があります。

  • System.Collections.IEnumerable

  • System.Runtime.InteropServices.ComTypes.IEnumVARIANT

  • System.ComponentModel IListSource

  • Microsoft.SqlServer.Dts.Runtime.Wrapper.ForEachEnumeratorHost

Array または ArrayList が一般的に使用されます。 ArrayList を使用する場合は、System.Collections 名前空間を参照する必要があります。

適用対象