Orc.NuGetExplorer.InlineExtensions.InsertRange C# (CSharp) Метод

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

public static InsertRange ( this inline, IEnumerable inlines ) : Inline
inline this
inlines IEnumerable
Результат System.Windows.Documents.Inline
        public static Inline InsertRange(this Inline inline, IEnumerable<Inline> inlines)
        {
            var span = inline as Span ?? new Span(inline);

            span.Inlines.AddRange(inlines);

            return span;
        }