Esempio n. 1
0
        public string GetEorrorMessages()
        {
            StringBuilder text = new StringBuilder();

            foreach (Tuple <int, string> msg in Errors)
            {
                text.Append(Input.FormErrorMessage(msg.Item1, msg.Item2));
                text.AppendLine();
            }
            return(text.ToString());
        }
Esempio n. 2
0
        public string GetEorrorMessages()
        {
            StringBuilder text = new StringBuilder();

            foreach (KeyValuePair <int, string> msg in Errors)
            {
                text.Append(Input.FormErrorMessage(msg.Key, msg.Value));
                text.AppendLine();
            }
            return(text.ToString());
        }
Esempio n. 3
0
        public string GetEorrorMessages()
        {
            StringBuilder text = new StringBuilder();

            {
                var __list2      = Errors;
                var __listCount2 = __list2.Count;
                for (int __i2 = 0; __i2 < __listCount2; ++__i2)
                {
                    var msg = (Pair <int, string>)__list2[__i2];
                    {
                        text.Append(Input.FormErrorMessage(msg.Left, msg.Right));
                        text.AppendLine();
                    }
                }
            }
            return(text.ToString());
        }