Closed
Description
I am new to MoreLINQ, I want to use "official" LINQ and MoreLINQ side by side. They both have Append() method. for below code
Enumerable.Range(1,5).Append(6);
I got compiler error:
Cannot execute text selection: CS0121 The call is ambiguous between the following methods or properties: 'System.Linq.Enumerable.Append(System.Collections.Generic.IEnumerable, TSource)' and 'MoreLinq.MoreEnumerable.Append(System.Collections.Generic.IEnumerable, T)'
any solution?