示例#1
0
        /// <summary>
        /// display all response in response dictionary
        /// </summary>
        protected void ShowResponseList()
        {
            var count = 1;

            foreach (var response in ProgramStorageQueries.GetResponses())
            {
                CMD.ShowApplicationMessageToUser($"{count++} )key : {response.Key} \tvalue : {response.Value.ResponseUri}");
            }
        }