예제 #1
0
파일: Current.cs 프로젝트: modulexcite/More
        public ILookup <ErrorType, Error> GetWarnings()
        {
            var all = Warnings.SelectMany(i => i.Value);

            return(all.ToLookup(i => i.Type));
        }