22 lines
442 B
C#
22 lines
442 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace InSituLaboratory.Common
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 定义一个Socket静态类,用于连接,断开 ,接收,发送
|
|||
|
|
/// </summary>
|
|||
|
|
public static class SocketStatic
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public static Client client = new Client();
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|