Fix ambiguous references

This commit is contained in:
Matt Nadareski
2023-04-17 13:22:35 -04:00
parent 5fce4c84b5
commit 18fee399f4
19 changed files with 35 additions and 35 deletions

View File

@@ -39,7 +39,7 @@ namespace SabreTools.DatFiles.Formats
{
// Open a file reader
Encoding enc = filename.GetEncoding();
StreamReader sr = new StreamReader(File.OpenRead(filename), enc);
StreamReader sr = new StreamReader(System.IO.File.OpenRead(filename), enc);
string gamename = string.Empty;
while (!sr.EndOfStream)
@@ -278,7 +278,7 @@ namespace SabreTools.DatFiles.Formats
try
{
logger.User($"Writing to '{outfile}'...");
FileStream fs = File.Create(outfile);
FileStream fs = System.IO.File.Create(outfile);
// If we get back null for some reason, just log and return
if (fs == null)