Esempio n. 1
0
        private static TimeSpan TimeForExtendedInstance(Instance instance)
        {
            var sw = new Stopwatch();

            sw.Restart();
            var extendedInstance = new ExtendedInstance(instance);

            extendedInstance.GenerateFullExtendedInstance();
            sw.Stop();
            return(sw.Elapsed);
        }