Exemplo n.º 1
0
        public IActionResult Index()
        {
            List <string> list = new List <string>();

            list.Add($"functionStore:{_functionStore.GetType()}, hashCode:{_functionStore.GetHashCode()}");
            list.Add($"moduleStore:{_moduleStore.GetType()}, hashCode:{_moduleStore.GetHashCode()}");

            return(Content(list.ExpandAndToString("\n\r")));
        }