// Online C# Editor for free
// Write, Edit and Run your C# code using C# Online Compiler
using System;
public class HelloWorld
{
public static void Main(string[] args)
var sa = new DateTimeOffset(2024, 7, 25, 15, 0, 0, TimeSpan.FromHours(3));
var utc = new DateTimeOffset(2024, 7, 25, 12, 0, 0, TimeSpan.FromHours(0));
Console.WriteLine(sa==utc);
}