C#读取文件为byte数组详解编程语言

        private byte[] FileContent(string fileName) 
        { 
            using (FileStream fs = new FileStream(fileName, FileMode.Open, FileAccess.Read)) 
            { 
                try 
                { 
                    byte[] buffur = new byte[fs.Length]; 
                    fs.Read(buffur, 0, (int)fs.Length); 
                    return buffur; 
                } 
                catch (Exception ex) 
                { 
                    throw ex; 
                } 
            } 
        } 

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/20968.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论