bluetoothsocket.cs

来自「Windows Mobile的蓝牙C#程序」· CS 代码 · 共 19 行

CS
19
字号
#region Using 指令

using System;
using System.Net.Sockets;

#endregion

namespace OpenNETCF.Net.Bluetooth {
    /// <summary>
    /// BluetoothSocket 的摘要说明。
    /// </summary>
    public class BluetoothSocket  : Socket{
        public BluetoothSocket() : base((AddressFamily)0x20, SocketType.Stream, ProtocolType.Ggp) {
        }
    }
}

  

⌨️ 快捷键说明

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