Apr 21
It’s easy to read a file into a byte array. Just use the File.ReadAllBytes static method. This opens a binary file in read-only mode, reads the contents of the file into a byte array, and then closes the file.
string filePath = @"C:test.doc"; byte[] byteArray = File.ReadAllBytes( filePath );
please help me to make console project about “Hashing” Closed / Chained Addressing (use array not linked list)
plese…please