0

我的问题与这个非常相似。但它是 php 到 silverlight。

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

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

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

4

1 回答 1

1

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

byte[] content = System.Convert.FromBase64String(base64string);
于 2009-08-18T09:54:13.617 回答