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