view Implab/Diagnostics/LogicalOperation.cs @ 269:ff581cff7003 v3

Working on Unity container xml configuration
author cin
date Tue, 24 Apr 2018 01:46:02 +0300
parents 34df34841225
children
line wrap: on
line source

using System;
using System.Diagnostics;

namespace Implab.Diagnostics {
    public class LogicalOperation {
        public Stopwatch OperationStopwatch { get; private set; }

        public string Name { get; private set; }

        internal LogicalOperation(string name) {
            Name = string.IsNullOrEmpty(name) ? "<unnamed>" : name;
            OperationStopwatch = Stopwatch.StartNew();
        }

        public override string ToString() => Name;
    }
}