示例#1
0
 return(string.Join(Environment.NewLine, value));
示例#2
0
 get => string.Join(
     Environment.NewLine,
     Headers.Select(x => $"{x.Key}: {x.Value}"));
 get => string.Join(Environment.NewLine, Errors.ToArray());
示例#4
0
 get => string.Join(Environment.NewLine, OrderList);
示例#5
0
{string.Join(Environment.NewLine, pipelineHttpContext.Request.Headers.Select(h => h.Key + " " + string.Join("|", h.Value)))}");
示例#6
0
 : this(string.Join(Environment.NewLine, Enumerable.Range(1, results.Count).Select(num => GetTestMethod(num, results[num - 1].Outcome == TestOutcome.Ignored))))
示例#7
0
 ? string.Join(Environment.NewLine, a.InnerExceptions.Select(x => x.GetCombinedMessage()))
示例#8
0
 set => this.Name = value != null?string.Join(Environment.NewLine, value) : null;
示例#9
0
 .Split(Environment.NewLine, StringSplitOptions.RemoveEmptyEntries)
示例#10
0
{string.Join(Environment.NewLine, files.Select(file => $"    {file.Name} ({ToMb(file.Length):0.0} MB)"))}
 Assert.True(actual.Length > 2, $"The actual output is expected to have at least two lines. Found {actual.Length} lines:\r\n" + string.Join(Environment.NewLine, actual));
示例#12
0
 public string Error => (errors is null) ? String.Empty : String.Join(Environment.NewLine, errors.Distinct());
示例#13
0
 return(string.Join(Environment.NewLine, prefix.Concat(body)));
 string.Join(
     Environment.NewLine,
     objs
     ?.Select(obj =>
示例#15
0
 } = new(0, "Unloaded, Don't Load Automatically", string.Join(Environment.NewLine + Environment.NewLine, "The add-in is not loaded automatically. The user can try to manually load the add-in, or the add-in can be loaded programmatically.", "If the add-in is successfully loaded, the LoadBehavior value remains 0, but the status of the add-in in the 'COM Add-Ins' dialog box is updated to indicate that the add-in is loaded."));
示例#16
0
 => error is AggregateException e?string.Join(Environment.NewLine, e.InnerExceptions.Select(GetMessage)) : error.Message;
示例#17
0
 get => string.Join(Environment.NewLine, _logCache);
 log.Log(string.Join(Environment.NewLine, parallelLog));
示例#19
0
文件: Hubs.cs 项目: NickDarvey/Qx
 @this.Match(Valid: v => v, Invalid: e => throw new HubException("Invalid query" + Environment.NewLine + string.Join(Environment.NewLine, e)));
示例#20
0
 get => string.Join(Environment.NewLine, Config.Settings.ScriptSettings.CustomUsings);
示例#21
0
 Console.WriteLine(string.Join(Environment.NewLine, names.Where(name => Filter(name, maxLength))));
 Assert.AreEqual("MyMath", string.Join(Environment.NewLine, math.GetVectorDescriptionEntries().Select(e => e.Descriptor)));
 string.Join(Environment.NewLine, list.Select(x => x.Item1 + " -> " + x.Item2?.Message))
示例#24
0
 : base(string.Join(Environment.NewLine, invalid
                    .Select(i => BuildMessage(i.Item1, i.Item2.ToExpectedCalls(), i.Item2.Calls, null))