CSL.BEncoding.decode_list C# (CSharp) 메소드

decode_list() 공개 정적인 메소드

public static decode_list ( byte x, int &f ) : object
x byte
f int
리턴 object
        public static object decode_list(byte[] x, ref int f)
        {
            ArrayList r = new ArrayList();
            while (x[f] != 'e')
            {
                object v = bdecode_rec(x, ref f);
                r.Add(v);
            }
            f += 1;
            return r;
        }