Cnv.StringFromBase64 Method
Convert a base64-encoded string into a text string.
Syntax
[C#]
public static string StringFromBase64(
string s
)
[VB.NET]
Public Shared Function StringFromBase64 ( _
s As String _
) As String
Parameters
- s
- Base64-encoded data
Return Value
String value
Remarks
Uses the 'Default' encoding for the system's current ANSI code page. This assumes the user knows the resulting characters are all printable.
[Contents] [Index]