CodeStatementCollection.CopyTo メソッド
指定したインデックスをコピー開始位置として、1 次元の Array インスタンスにコレクション オブジェクトをコピーします。
名前空間: System.CodeDom
アセンブリ: System (system.dll 内)
構文
'宣言
Public Sub CopyTo ( _
array As CodeStatement(), _
index As Integer _
)
'使用
Dim instance As CodeStatementCollection
Dim array As CodeStatement()
Dim index As Integer
instance.CopyTo(array, index)
public void CopyTo (
CodeStatement[] array,
int index
)
public:
void CopyTo (
array<CodeStatement^>^ array,
int index
)
public void CopyTo (
CodeStatement[] array,
int index
)
public function CopyTo (
array : CodeStatement[],
index : int
)
パラメータ
- array
コレクションから値がコピーされる先の 1 次元の Array。
- index
挿入の開始位置を示す、配列内のインデックス。
例外
例外の種類 | 条件 |
---|---|
配列先が多次元です。 または CodeStatementCollection 内の要素の数が、index パラメータで指定されたターゲット配列のインデックスからターゲット配列の末尾までの間にある使用可能な空間の大きさを超えています。 |
|
array パラメータが null 参照 (Visual Basic では Nothing) です。 |
|
index パラメータが、ターゲット配列の最小インデックスより小さい値です。 |
使用例
' Copies the contents of the collection beginning at index 0 to the specified CodeStatement array.
' 'statements' is a CodeStatement array.
Dim statementArray(collection.Count) As CodeStatement
collection.CopyTo(statementArray, 0)
// Copies the contents of the collection beginning at index 0 to the specified CodeStatement array.
// 'statements' is a CodeStatement array.
CodeStatement[] statementArray = new CodeStatement[collection.Count];
collection.CopyTo( statementArray, 0 );
// Copies the contents of the collection beginning at index 0 to the specified CodeStatement array.
// 'statements' is a CodeStatement array.
collection->CopyTo( statements, 0 );
// Copies the contents of the collection beginning at index 0 to the specified CodeStatement array.
// 'statements' is a CodeStatement array.
CodeStatement[] statementArray = new CodeStatement[collection.get_Count()];
collection.CopyTo( statementArray, 0 );
プラットフォーム
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
バージョン情報
.NET Framework
サポート対象 : 2.0、1.1、1.0
参照
関連項目
CodeStatementCollection クラス
CodeStatementCollection メンバ
System.CodeDom 名前空間
Array クラス