mirror of
https://github.com/zodiacon/DotNextSP2019
synced 2026-06-08 18:37:46 +00:00
12 lines
293 B
C#
12 lines
293 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ExceptionLogger {
|
|
static class Extensions {
|
|
public static string ToTimeString(this DateTime dt) => dt.ToString("G") + "." + dt.Millisecond.ToString("D3");
|
|
}
|
|
}
|