public static string Decode(byte[] g) { string buf = RLEM3.Decode(g); return(deSort(buf)); }
public static byte[] Encode(string s) { byte[] res = RLEM3.Encode(getSort(s)); return(res); }