Exemplo n.º 1
0
        private long Read(string file)
        {
            long result;

            try
            {
                result = long.Parse(NetworkInterface.ReadLine(this.linux.IfacePath + file));
            }
            catch
            {
                result = 0L;
            }
            return(result);
        }