CSharp examples for System:DateTime UTC
To Formatted Utc Time
using System;//from w ww . j a v a 2 s. c o m public class Main{ public static string ToFormattedUtcTime(this DateTime dateTimeValue) { var formattedUtc = dateTimeValue.ToUniversalTime().ToString("s"); if (!formattedUtc.EndsWith("Z")) { formattedUtc += "Z"; } return formattedUtc; } }