public static string SummaryWithList(Scenario scen, string tag, string intro)
        {
            string text = ScenSummaryList.SummaryList(scen, tag);

            if (!text.NullOrEmpty())
            {
                return("\n" + intro + ":\n" + text);
            }
            return(null);
        }
Beispiel #2
0
        public static string SummaryWithList(Scenario scen, string tag, string intro)
        {
            string text = ScenSummaryList.SummaryList(scen, tag);
            string result;

            if (!text.NullOrEmpty())
            {
                result = "\n" + intro + ":\n" + text;
            }
            else
            {
                result = null;
            }
            return(result);
        }