コード例 #1
0
ファイル: Current.cs プロジェクト: modulexcite/More
        public ILookup <ErrorType, Error> GetWarnings()
        {
            var all = Warnings.SelectMany(i => i.Value);

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