.net utcdatetime to string code example
Example 1: c# tostring mmm dd yyyy
DateTime.Today.ToString("MMM dd, yyyy");
Example 2: Datetime to utc format
string foo = yourDateTime.ToUniversalTime()
.ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fff'Z'");