Exemplo n.º 1
0
 string[] Convert(byte[] buf, int index, int count)
 {
     if ((buf == null) || (buf.Length <= 0))
     {
         return(null);
     }
     //
     string[] strs = m_ByteConverter.Convert(buf, index, count, false);
     for (int i = 0; i < strs.Length; i++)
     {
         strs[i] = "\t\t" + strs[i];
     }
     //
     return(strs);
 }