void Exec_Base642Byte() { Bytes = Compress.ByteDecompress(Cast.Str2Byte(Base64, EStringByte.Base64)); }
void Exec_Byte2Hex() { Hex = Cast.Byte2Str(Compress.ByteCompress(Bytes)); }
void Exec_Byte2Base64() { Base64 = Cast.Byte2Str(Compress.ByteCompress(Bytes), EStringByte.Base64); }
void Exec_Hex2Byte() { Bytes = Compress.ByteDecompress(Cast.Str2Byte(Hex)); }