Some more xml doc updates.

This commit is contained in:
Eugene Wang
2018-11-13 21:15:52 -05:00
parent 485810d46f
commit ebc2f49d92
5 changed files with 33 additions and 10 deletions

View File

@@ -13,6 +13,7 @@ namespace NetCoreConsole
var config = new TwainConfigBuilder()
.DefineApp(Assembly.GetExecutingAssembly())
.Build();
Console.WriteLine($"App = {(config.Is64Bit ? "64bit" : "32bit")}");
Console.WriteLine($"Platform = {config.Platform}");
Console.WriteLine();
@@ -38,8 +39,6 @@ namespace NetCoreConsole
var selectSrc = session.ShowSourceSelector();
Console.WriteLine($"Selected data source = {selectSrc}");
Console.WriteLine();
//session.DefaultSource = null;
}
}