Exemplo n.º 1
0
            public string loadnow(BotFunctionData BotInput)
            {
                StringBuilder responsebuilder = new StringBuilder();

                System.Diagnostics.Stopwatch swatch = new System.Diagnostics.Stopwatch();
                swatch.Start();
                persistence.load(persistence.filename);
                swatch.Stop();
                responsebuilder.AppendFormat("Loaded from {0} in {1}ms!", persistence.filename, swatch.ElapsedMilliseconds);
                return(responsebuilder.ToString());
            }