php 到 silverlight base64 编码/解码

php to silverlight base64 encode/decode

我的问题和这个很相似。
但是silverlight是php。

我的 php 代码(服务器编码):

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

如何在 Silverlight 2 中实现解码后的字符串?


这个问题实际上与 PHP 无关,只是关于在 Silverlight 中解码 base64 字符串 - 如果可以相信快速的 Google 搜索,就会发生这样的事情:

1
byte[] content = System.Convert.FromBase64String(base64string);