---
title: "What is the differences between dataset.clone and dataset.copy in .Net?"  
description: "What is the differences between dataset.clone and dataset.copy in .Net?"  
author: "Sumit Kesarwani"  
published: 2014-04-10  
updated: 2020-09-15  
canonical: https://www.mindstick.com/interview/1953/what-is-the-differences-between-dataset-clone-and-dataset-copy-in-dot-net  
category: ".net"  
tags: [".net"]  
reading_time: 1 minute  

---

# What is the differences between dataset.clone and dataset.copy in .Net?

Dataset.clone copies just the structure of dataset (including all the datatables, schemas, relations and constraints.); however it doesn’t copy the data.

Dataset.copy, copies both the dataset structure and the data.

## Answers

### Answer by Sumit Kesarwani

Dataset.clone copies just the structure of dataset (including all the datatables, schemas, relations and constraints.); however it doesn’t copy the data.

Dataset.copy, copies both the dataset structure and the data.


---

Original Source: https://www.mindstick.com/interview/1953/what-is-the-differences-between-dataset-clone-and-dataset-copy-in-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
