---
title: "Different between DateTime.Now and DateTime.UTCNow;"  
description: "Different between DateTime.Now and DateTime.UTCNow;"  
author: "AVADHESH PATEL"  
published: 2013-04-01  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/1691/different-between-datetime-now-and-datetime-utcnow  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# Different between DateTime.Now and DateTime.UTCNow;

DateTime.UtcNow tells you the date and time as it would be in Coordinated Universal Time, which is also called the Greenwich Mean Time time zone

DateTime.Now gives the date and time as it would appear to someone in your current locale.

## Answers

### Answer by AVADHESH PATEL

DateTime.UtcNow tells you the date and time as it would be in Coordinated Universal Time, which is also called the Greenwich Mean Time time zone

DateTime.Now gives the date and time as it would appear to someone in your current locale.


---

Original Source: https://www.mindstick.com/interview/1691/different-between-datetime-now-and-datetime-utcnow

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
