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

Decode() 공개 정적인 메소드

public static Decode ( FileInfo fi ) : object
fi System.IO.FileInfo
리턴 object
        public static object Decode(FileInfo fi)
        {
            byte[] barray = File.ReadAllBytes(fi.FullName);
            return Decode(barray);
        }

Same methods

BEncoding::Decode ( byte message ) : object
BEncoding::Decode ( string message ) : object