Fix errant space in variable name

This commit is contained in:
Matt Nadareski
2023-10-04 15:50:56 -04:00
parent bd3c518fa0
commit 90da5d1a7e
3 changed files with 50 additions and 40 deletions

View File

@@ -14,6 +14,15 @@ namespace MPF.Check
{
public static void Main(string[] args)
{
// TEMP SHIT CODE
Drive drive = Drive.Create(InternalDriveType.Optical, "D:\\");
byte[] data = drive.ReadSector(0);
Console.WriteLine(data);
// END TEMP SHIT CODE
// Try processing the standalone arguments
if (ProcessStandaloneArguments(args))
return;