Convert a string to Base64.

Namespace:  Sasa.String
Assembly:  Sasa (in Sasa.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function ToBase64 ( _
	s As String _
) As String
C#
public static string ToBase64(
	string s
)
Visual C++
public:
static String^ ToBase64(
	String^ s
)
JavaScript
Sasa.String.StringExt.toBase64 = function(s);

Parameters

s
Type: System..::.String
The string to convert.

Return Value

The Base64-encoded string.

See Also