Ejemplo n.º 1
0
        public void AddWideString(AByteArray bytes, String s)
        {
            var t = UStringUtils.SubStr(s, 1, -1); //not the quotes;

            Add(bytes, USpk.SpkEncoding.GetBytes(t));
        }
Ejemplo n.º 2
0
 public static String Copy(String str, int start, int length)
 {
     return(UStringUtils.SubStr(str, start, length));
 }