mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
21 lines
604 B
C#
21 lines
604 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace DiscImageChef.Commands
|
|||
|
|
{
|
|||
|
|
public static class Compare
|
|||
|
|
{
|
|||
|
|
public static void doCompare(CompareSubOptions options)
|
|||
|
|
{
|
|||
|
|
if (MainClass.isDebug)
|
|||
|
|
{
|
|||
|
|
Console.WriteLine("--debug={0}", options.Debug);
|
|||
|
|
Console.WriteLine("--verbose={0}", options.Verbose);
|
|||
|
|
Console.WriteLine("--input1={0}", options.InputFile1);
|
|||
|
|
Console.WriteLine("--input2={0}", options.InputFile2);
|
|||
|
|
}
|
|||
|
|
throw new NotImplementedException("Comparing not yet implemented.");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|