Answers for "c# get all bytes of a file"

C#
0

c# get all bytes of a file

//replace filepath with the real filepath
byte[] fileBytes = System.IO.File.ReadAllBytes(filepath);
Posted by: Guest on December-06-2021

C# Answers by Framework

Browse Popular Code Answers by Language