Home
last modified time | relevance | path

Searched refs:separator (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs427 …public static string Stringify<TSource>(this IEnumerable<TSource> source, string separator = " ", … in Stringify() argument
429 …return Stringify(source.Select(x => x == null ? String.Empty : x.ToString()), separator, limitPerL… in Stringify()
432 …public static string Stringify(this IEnumerable<string> source, string separator = " ", int limitP… in Stringify() argument
437 …return source.Aggregate((x, y) => x + separator + (limitPerLine != 0 && (++idx % limitPerLine == 0… in Stringify()