0

My question is quite similar with this one. But it is php to silverlight.

my php code (server encode):

$str = 'This is the string';
$encoded = base64_encode($str);

How could I achieved the decoded string in Silverlight 2?

1 Answer 1

1

The question has actually nothing to do with PHP, just about decoding base64 strings in Silverlight - which, if a quick Google search is to be believed, happens like this:

byte[] content = System.Convert.FromBase64String(base64string);
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.