-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathCollectionExtensions.cs
64 lines (59 loc) · 2.19 KB
/
CollectionExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
using System;
using System.Collections.Generic;
using System.Linq;
namespace WebApiClientCore
{
/// <summary>
/// 提供集合扩展
/// </summary>
static class CollectionExtensions
{
/// <summary>
/// 格式化集合
/// </summary>
/// <param name="keyValues">集合</param>
/// <param name="format">格式</param>
/// <returns></returns>
public static IEnumerable<KeyValue> CollectAs(this IEnumerable<KeyValue> keyValues, CollectionFormat format)
{
return format switch
{
CollectionFormat.Multi => keyValues,
CollectionFormat.Csv => keyValues.CollectAs(@","),
CollectionFormat.Ssv => keyValues.CollectAs(@" "),
CollectionFormat.Tsv => keyValues.CollectAs(@"\"),
CollectionFormat.Pipes => keyValues.CollectAs(@"|"),
_ => throw new NotImplementedException(format.ToString()),
};
}
/// <summary>
/// 格式化集合
/// </summary>
/// <param name="keyValues">集合</param>
/// <param name="separator">分隔符</param>
/// <returns></returns>
private static IEnumerable<KeyValue> CollectAs(this IEnumerable<KeyValue> keyValues, string separator)
{
if (keyValues is ICollection<KeyValue> collection && collection.Count < 2)
{
return keyValues;
}
return keyValues.GroupBy(item => item.Key).Select(item =>
{
var value = string.Join(separator, item.Select(i => i.Value));
return new KeyValue(item.Key, value);
});
}
/// <summary>
/// 转换为只读列表
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="source"></param>
/// <exception cref="ArgumentNullException"></exception>
/// <returns></returns>
public static IReadOnlyList<T> ToReadOnlyList<T>(this IEnumerable<T> source)
{
return source == null ? throw new ArgumentNullException(nameof(source)) : (IReadOnlyList<T>)source.ToList().AsReadOnly();
}
}
}