ברוכים הבאים לאתר השאלות והתשובות. מקום בו תוכלו לשאול כל שאלה ולקבל תשובות מהקהילה. יצירת קשר במייל aviboots(AT)netvision.net.il

התגיות הפופולריות ביותר

c#

של המחשב שלי - serial port names -כיצד לקבל את ה

0 אהבו 0 לא אהבו
108 views
asked Oct 31, 2013 in C# תכנות על-ידי avibootz (3,230 נקודות)
edited Oct 31, 2013 על-ידי avibootz

תשובה אחת

0 אהבו 0 לא אהבו

using System;
using System.IO.Ports;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            // example 1
            string[] theSerialPortNames = SerialPort.GetPortNames();
            foreach (string s in theSerialPortNames)
            {
                Console.WriteLine(s);
            }

            // example 2
            foreach (string s in SerialPort.GetPortNames())
            {
                Console.WriteLine(s.ToString());
            }
        }
    }
}

Laser Company השתלת שיער

answered Oct 31, 2013 על-ידי avibootz (3,230 נקודות)
...