예제 #1
0
파일: LinqEx.cs 프로젝트: rrossenbg/vprint
        public static U GetValueSafe <T, U>(this EntityCollection <T> items, int index,
                                            Func <T, U> getValueFunc, U defaultValue = default(U))
            where T : class
        {
            var p = items.ElementAtOrDefault(index);

            if (p != null)
            {
                return(getValueFunc(p));
            }
            return(defaultValue);
        }