We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e56b06a commit 1dc62aeCopy full SHA for 1dc62ae
src/libraries/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/Utils.cs
@@ -720,17 +720,10 @@ internal static X509Certificate2Collection BuildBagOfCerts(KeyInfoX509Data keyIn
720
return collection;
721
}
722
723
-#if NET5_0_OR_GREATER
724
internal static string EncodeHexString(byte[] sArray)
725
{
726
return Convert.ToHexString(sArray);
727
728
-#else
729
- internal static string EncodeHexString(byte[] sArray)
730
- {
731
- return HexConverter.ToString(sArray);
732
- }
733
-#endif
734
735
internal static byte[] DecodeHexString(string s)
736
0 commit comments