Catalogue.Gemini.Helpers.Extensions.ToExtentList C# (CSharp) Метод

ToExtentList() публичный статический Метод

public static ToExtentList ( this source ) : List
source this
Результат List
        public static List<Extent> ToExtentList(this StringPairList source)
        {
            return source
                .Select((pair => new Extent { Authority = pair.Item1, Value = pair.Item2 }))
                .ToList();
        }