About 699,000 results
Open links in new tab
  1. c# - Get input from a scanner connected to USB port or Serial …

    Feb 21, 2014 · Here's a really simple example that should capture it from the scanner the user selects. //Reference "Windows Image Acquisition Library v2.0" on the COM tab. var dialog = …

  2. C# User Input - W3Schools

    Console.ReadLine() to get user input. In the following example, the user can input his or hers username, which is stored in the variable userName. Then we print the value of . The …

    Missing:

    • Scanner

    Must include:

  3. C# User Input - CodeGuru.com

    Oct 4, 2022 · The simplest method to get input from a user in C# is to use one of these three methods: ReadLine (), ReadKey (), or Read (). They are all contained in the Console class and …

    Missing:

    • Scanner

    Must include:

  4. Receiving Input From a Bar-code Scanner in C#

    May 9, 2018 · In this post I'm going to explain how to receive information from a bar code scanner. There is some decent information about this on the web, but I feel like there are …

  5. Scanner Implementation - .NET Framework | Microsoft Learn

    Feb 21, 2023 · The scanner object follows the general model for event-drive input: When input is received from the device, a DataEvent event is queued using the Microsoft helper method, …

  6. c# - How can I read user input from the console? - Stack Overflow

    So you can get the work done by using Console.ReadLine () instead of Console.Read () as follows. int userInput = int.parse(Console.ReadLine()); here, the output of the …

    Missing:

    • Scanner

    Must include:

  7. C# Basic Input and Output - Programiz

    In C#, the simplest method to get input from the user is by using the ReadLine() method of the Console class. However, Read() and ReadKey() are also available for getting input from the user.

    Missing:

    • Scanner

    Must include:

  8. How to Send Inputs using C# - CodeProject

    Jul 9, 2020 · DirectInput is an API for collecting user input from a user, via input devices (keyboard, mouse, etc.). Depending on some flags that we will discuss later, we can send …

  9. User Input and Output in C# - Dot Net Tutorials

    In C#, the simplest method to get input from the user is by using the ReadLine () method of the Console class. However, Read () and ReadKey () are also available for getting input from the …

    Missing:

    • Scanner

    Must include:

  10. C# - User Input | csharp Tutorial

    The simplest way to get user input is by using the ReadLine() method of the Console class. It receives the input as a string, therefore you need to convert it. You can also use Read() and …

Refresh