我有以下代碼,但仍然必須鍵入完整路徑才能使用System.IO.Ports命名空間,即使我已經使用了使用子句。我在參考列表中錯過了什麼嗎?無法類型System.IO.Ports速記
的=新的SerialPort返回一個錯誤5「的SerialPort」是「命名空間」,但使用像一個「類型」
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO.Ports;
namespace SerialPort
{
public partial class Form1 : Form
{
System.IO.Ports.SerialPort counter = new SerialPort("COM5");
public Form1()
{
InitializeComponent();
}
感謝