BitHelper.ToString C# (CSharp) Method

ToString() public static method

public static ToString ( byte buf, int pos ) : string
buf byte
pos int
return string
    public static string ToString(byte[] buf, int pos)
    {
        int len = buf[pos];
        string str = System.Text.Encoding.UTF8.GetString(buf, pos + 1, len);
        return str;
    }