Trying to read a binary file and cannot put the bytes into a string. Does anybody have and advice? Thanks
BinaryReader binaryreader = new BinaryReader(File.OpenRead(file location));
while(binaryreader.Read() > 0)
{...
I need some help with my program. Write a function that takes a string of comma seperated values and returnd a string of tab seperated values.
String str = new String("Hello, BHW, how, are, you, today?");
str.replaceAll("," , " ");
This is...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.