Goedel.Cryptography.UDF.ToString C# (CSharp) Method

ToString() public static method

Convert a binary UDF to a string.
public static ToString ( byte Data ) : string
Data byte
return string
        public static string ToString(byte[] Data) {
            int Length = (6 * ((Data.Length * 8) / 25)) - 1;
            return BaseConvert.ToUDF32String(Data, Length);
            }

Same methods

UDF::ToString ( string ContentType, byte Data, int Bits ) : string