CSharp examples for System:String Convert
To String Tiny
using System.Web; using System.Linq; using System.Collections.Generic; using System;/*from ww w.ja v a 2 s . c o m*/ public class Main{ public static string ToStringTiny(this DateTimeOffset dt) { return dt.ToString("MM/dd/yyyy"); // Saturday, 21 July 2007 14:58 } }