0

I want to use C# to implement encoding function which is written in Java, but it has some code I've never seen before.

HexBinaryAdapter().unmarshal("publicKey");

Is there any similar API or method in C# or I also need to implement it?

Luiggi Mendoza
  • 85,076
  • 16
  • 154
  • 332
user1531714
  • 111
  • 13

1 Answers1

1

Take a look at SoapHexBinary.

SoapHexBinary hexBinary = SoapHexBinary.Parse("publicKey");
artplastika
  • 1,972
  • 2
  • 19
  • 38