---
title: "What is the differences between dataset.clone and dataset.copy?"  
description: "What is the differences between dataset.clone and dataset.copy?"  
author: "Sumit Kesarwani"  
published: 2014-01-25  
updated: 2020-09-15  
canonical: https://www.mindstick.com/interview/1878/what-is-the-differences-between-dataset-clone-and-dataset-copy  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# What is the differences between dataset.clone and dataset.copy?

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/1878/what-is-the-differences-between-dataset-clone-and-dataset-copy

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
