diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-11-08 18:40:10 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-11-08 18:40:10 +0700 |
commit | cebeeb6d6573e15fe4f1a834f77ead9e8556f570 (patch) | |
tree | 8b5bd79075ce8f4c95c1357777da3852201afc0c /crypto/src/util/Platform.cs | |
parent | Some more PORTABLE updates (diff) | |
download | BouncyCastle.NET-ed25519-cebeeb6d6573e15fe4f1a834f77ead9e8556f570.tar.xz |
A few more changes to sync up with BouncyCastle-PCL
Diffstat (limited to 'crypto/src/util/Platform.cs')
-rw-r--r-- | crypto/src/util/Platform.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/src/util/Platform.cs b/crypto/src/util/Platform.cs index 82446b296..d4b18f182 100644 --- a/crypto/src/util/Platform.cs +++ b/crypto/src/util/Platform.cs @@ -34,6 +34,8 @@ namespace Org.BouncyCastle.Utilities { #if SILVERLIGHT return String.Compare(a, b, StringComparison.InvariantCultureIgnoreCase); +#elif SYS_RUNTIME + return String.Compare(a, b, StringComparison.OrdinalIgnoreCase); #elif PORTABLE return String.Compare(a, b, CultureInfo.InvariantCulture, CompareOptions.IgnoreCase); #else |