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

@@ -36,7 +36,7 @@ namespace SabreTools.DatFiles.Formats
{
// Open a file reader
Encoding enc = filename.GetEncoding();
SeparatedValueReader svr = new SeparatedValueReader(File.OpenRead(filename), enc)
SeparatedValueReader svr = new SeparatedValueReader(System.IO.File.OpenRead(filename), enc)
{
Header = true,
Quotes = true,
@@ -108,7 +108,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)