stopbits.cs

来自「gsmmodem通讯/手机编程 通讯/手机编程」· CS 代码 · 共 26 行

CS
26
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace Tollkuci.GsmModem
{
	/// <summary>
	/// Contains the possible values used for the stop bits in serial connection.
	/// </summary>
	public enum StopBits
	{
		/// <summary>
		/// Use 1 bit as stop bit.
		/// </summary>
		One,
		/// <summary>
		/// ???
		/// </summary>
		OnePointFive,
		/// <summary>
		/// Use 2 bits as stop bits
		/// </summary>
		Two,
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?