DataTable.Clone Method
.NET Framework 4
Namespace: System.Data
Assembly: System.Data (in System.Data.dll)
If these classes have been derived, the clone will also be of the same derived classes.
Both the Copy and the Clone methods create a new DataTable with the same structure as the original DataTable. The new DataTable created by the Copy method has the same set of DataRows as the original table, but the new DataTable created by the Clone method does not contain any DataRows.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
So clone doesn't really clone?
http://msdn.microsoft.com/en-us/library/system.icloneable.clone.aspx suggests that Clone can be implemented as a shallow copy or a deep copy. It doesn't suggest that it can be implemented as a PARTIAL copy. Which is what this does. When I clone a table I'd like the rows to come with it. I don't understand why MS has chosen not to do that :-/
Response: You're describing the Copy() method
Response: You're describing the Copy() method
- 7/9/2010
- JustinLD
- 2/17/2011
- Schabse S. Laks