w3resource

C#: Convert current DateTime object to local time

C# Sharp DateTime: Exercise-31 with Solution

Write a C# Sharp program to convert the current DateTime object value to local time.

Sample Solution:-

C# Sharp Code:

using System;

class Example31
{
	static void Main()
	{
		DateTime localDateTime, univDateTime;

		Console.WriteLine("Enter a date and time.");
		string strDateTime = Console.ReadLine();

		try {
			localDateTime = DateTime.Parse(strDateTime);
    		univDateTime = localDateTime.ToUniversalTime();

    		Console.WriteLine("{0} local time is {1} universal time.",
   								localDateTime,
    								univDateTime); 
		}
		catch (FormatException) {
			Console.WriteLine("Invalid format.");
			return;
		}

		Console.WriteLine("Enter a date and time in universal time.");
		strDateTime = Console.ReadLine();

		try {
			univDateTime = DateTime.Parse(strDateTime);
    		localDateTime = univDateTime.ToLocalTime();

    		Console.WriteLine("{0} universal time is {1} local time.",
    								 univDateTime,
    								 localDateTime); 
		}
		catch (FormatException) {
			Console.WriteLine("Invalid format.");
			return;
		}

	}
}

Sample Output:

Enter a date and time.                                                                                        
10.06.2017                                                                                                    
10/6/2017 12:00:00 AM local time is 10/5/2017 6:30:00 PM universal time.                                      
Enter a date and time in universal time.                                                                      
10.06.2017                                                                                                    
10/6/2017 12:00:00 AM universal time is 10/6/2017 5:30:00 AM local time.

Flowchart:

Flowchart: C# Sharp Exercises - Converts current DateTime object to local time

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to get the difference between two dates in days.
Next: Write a C# Sharp program to convert the value of the current DateTime object to its equivalent long date string representation.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.




We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook