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

Encode() 공개 정적인 메소드

public static Encode ( object x ) : byte[]
x object
리턴 byte[]
        public static byte[] Encode(object x)
        {
            MemoryStream ms = new MemoryStream();
            bencode_rec(x, ms);
            return ms.ToArray();
        }