.NET Framework 类库 |
复制该 DataTable 的结构和数据。
[Visual Basic] Public Function Copy() As DataTable [C#] public DataTable Copy(); [C++] public: DataTable* Copy(); [JScript] public function Copy() : DataTable;
返回值
新的 DataTable,它具有与该 DataTable 相同的结构(表架构和约束)和数据。
注意 如果这些类已经过派生,则副本也具有相同的派生类。
示例
[Visual Basic, C#, C++] 以下示例使用 Copy 方法创建初始 DataTable 的副本。
[Visual Basic] Private Sub CopyDataTable(ByVal myDataTable As DataTable ) ' Create an object variable for the copy. Dim copyDataTable As DataTable copyDataTable = myDataTable.Copy() ' Insert code to work with the copy. End Sub [C#] private void CopyDataTable(DataTable myDataTable){ // Create an object variable for the copy. DataTable copyDataTable; copyDataTable = myDataTable.Copy(); // Insert code to work with the copy. } [C++] private: void CopyDataTable(DataTable* myDataTable){ // Create an object variable for the copy. DataTable* copyDataTable; copyDataTable = myDataTable->Copy(); // Insert code to work with the copy. }
[JScript] 没有可用于 JScript 的示例。若要查看 Visual Basic、C# 或 C++ 示例,请单击页左上角的“语言筛选器”按钮 。
要求
平台: Windows 98, Windows NT 4.0, Windows ME, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 系列