11 references to Format
mscorlib (11)
system\datetime.cs (8)
1424return DateTimeFormat.Format(this, "D", DateTimeFormatInfo.CurrentInfo); 1429return DateTimeFormat.Format(this, "T", DateTimeFormatInfo.CurrentInfo); 1434return DateTimeFormat.Format(this, "d", DateTimeFormatInfo.CurrentInfo); 1439return DateTimeFormat.Format(this, "t", DateTimeFormatInfo.CurrentInfo); 1444return DateTimeFormat.Format(this, null, DateTimeFormatInfo.CurrentInfo); 1449return DateTimeFormat.Format(this, format, DateTimeFormatInfo.CurrentInfo); 1454return DateTimeFormat.Format(this, null, DateTimeFormatInfo.GetInstance(provider)); 1459return DateTimeFormat.Format(this, format, DateTimeFormatInfo.GetInstance(provider));
system\globalization\datetimeformat.cs (3)
1091results[i] = Format(dateTime, allFormats[i], dtfi); 1100results[i] = Format(universalTime, allFormats[i], dtfi); 1113results = new String[] {Format(dateTime, new String(new char[] {format}), dtfi)};