Decompresses a string from a shorter string compressed with Compress.
Namespace: Censitif.Library.DataAssembly: Censitif.Library (in Censitif.Library.dll) Version: 1.0.4878.23877
public static string Decompress(
string compressedText
)
public static string Decompress(
string compressedText
)
Public Shared Function Decompress (
compressedText As String
) As String
Public Shared Function Decompress (
compressedText As String
) As String
public:
static String^ Decompress(
String^ compressedText
)
public:
static String^ Decompress(
String^ compressedText
)
Parameters
- compressedText
- Type: System String
The compressed string.
Return Value
Type:
StringThe decompressed string.
Code from http://www.csharphelp.com/2007/09/compress-and-decompress-strings-in-c/.