Suppose something like the following snippet:
string filePath = @"C:\MyFolder\MyFile.dat"; var fs = File.Create(filePath); fs.SetLength(1000000000); fs.Close();Is a newly created file always guaranteed to contain nulls only?
Suppose something like the following snippet:
string filePath = @"C:\MyFolder\MyFile.dat"; var fs = File.Create(filePath); fs.SetLength(1000000000); fs.Close();Is a newly created file always guaranteed to contain nulls only?