Delphi/끄적이기
StopWatch로 시간 체크
var .., System.Diagnostics;type IAutoStopWatch = interface procedure Start; function Stop: string; end; TAutoStopWatch = class(TInterfacedObject, IAutoStopWatch) private FStopWatch : TStopWatch; public procedure Start; function Stop: string; constructor Create(isStart: Boolean = True); destructor Destroy; override; end; { TAutoStopWatch } constructor TAutoStopWatch.Create(isStart: Boolean); begi..