Orc.NuGetExplorer.InlineExtensions.InsertRange C# (CSharp) Method

InsertRange() public static method

public static InsertRange ( this inline, IEnumerable inlines ) : Inline
inline this
inlines IEnumerable
return 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;
        }