forked from sshnet/SSH.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStringExtensions.cs
More file actions
35 lines (31 loc) · 1000 Bytes
/
StringExtensions.cs
File metadata and controls
35 lines (31 loc) · 1000 Bytes
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
#nullable enable
#if NETSTANDARD2_0 || NETFRAMEWORK
using System.Collections.Generic;
#endif
namespace System
{
internal static class StringExtensions
{
extension(string text)
{
#if NETSTANDARD2_0 || NETFRAMEWORK
public static string Join(char separator, params string?[] value)
{
return string.Join(separator.ToString(), value);
}
public static string Join(char separator, IEnumerable<string?> value)
{
return string.Join(separator.ToString(), value);
}
public static string Join(char separator, string?[] value, int startIndex, int count)
{
return string.Join(separator.ToString(), value, startIndex, count);
}
public int IndexOf(char value, StringComparison comparisonType)
{
return text.IndexOf(value.ToString(), comparisonType);
}
#endif
}
}
}