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
65
66
67
68
69
|
using System;
using System.Globalization;
namespace Org.BouncyCastle.Utilities
{
internal static class Platform
{
private static readonly CompareInfo InvariantCompareInfo = CultureInfo.InvariantCulture.CompareInfo;
internal static bool EqualsIgnoreCase(string a, string b)
{
return string.Equals(a, b, StringComparison.OrdinalIgnoreCase);
}
internal static string GetEnvironmentVariable(string variable)
{
try
{
return Environment.GetEnvironmentVariable(variable);
}
catch (System.Security.SecurityException)
{
// We don't have the required permission to read this environment variable,
// which is fine, just act as if it's not set
return null;
}
}
internal static int IndexOf(string source, char value)
{
return InvariantCompareInfo.IndexOf(source, value, CompareOptions.Ordinal);
}
internal static int IndexOf(string source, string value)
{
return InvariantCompareInfo.IndexOf(source, value, CompareOptions.Ordinal);
}
internal static int IndexOf(string source, char value, int startIndex)
{
return InvariantCompareInfo.IndexOf(source, value, startIndex, CompareOptions.Ordinal);
}
internal static int IndexOf(string source, string value, int startIndex)
{
return InvariantCompareInfo.IndexOf(source, value, startIndex, CompareOptions.Ordinal);
}
internal static int LastIndexOf(string source, string value)
{
return InvariantCompareInfo.LastIndexOf(source, value, CompareOptions.Ordinal);
}
internal static bool StartsWith(string source, string prefix)
{
return InvariantCompareInfo.IsPrefix(source, prefix, CompareOptions.Ordinal);
}
internal static bool EndsWith(string source, string suffix)
{
return InvariantCompareInfo.IsSuffix(source, suffix, CompareOptions.Ordinal);
}
internal static string GetTypeName(object obj)
{
return obj.GetType().FullName;
}
}
}
|