Beispiel #1
0
        public NhStopwatch(INhContext context, string beginMessage, string endMessage)
        {
            _context = context;
            _endMessage = endMessage;

            _context.WriteTrace(LogEntryType.Information, beginMessage);

            _watch = new Stopwatch();
            _watch.Start();
        }