mirror of
https://github.com/soukoku/ntwain.git
synced 2025-07-19 06:19:03 +08:00
13 lines
256 B
C#
13 lines
256 B
C#
![]() |
using NTwain;
|
|||
|
using System.Reflection;
|
|||
|
|
|||
|
namespace SampleConsole
|
|||
|
{
|
|||
|
internal class Program
|
|||
|
{
|
|||
|
static void Main(string[] args)
|
|||
|
{
|
|||
|
var twain = new TwainSession(Environment.ProcessPath ?? Assembly.GetExecutingAssembly().Location);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|