无法创建超级套接字服务器应用服务器的实例
本文关键字:服务器 应用服务器 实例 套接字 创建 | 更新日期: 2023-09-27 17:56:24
我正在尝试让SuperSocketServer应用程序运行。但是,我似乎无法创建服务器的实例。这是我的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SuperSocket.SocketBase;
using SuperSocket.SocketBase.Config;
using SuperSocket.SocketEngine;
using SuperSocket.SocketBase.Protocol;
namespace WinnieServer
{
class Program
{
AppServer W = new AppServer();
static void Main(string[] args)
{
Console.Write("Starting...");
while (true)
{
}
}
}
}
我尝试了源代码中的示例。但是,它们都给出相同的错误:
无法创建抽象类或接口"SuperSocket.SocketBase.AppServer"的实例
这是创建 SSS 实例的正确方法吗?
当心李
我遇到了同样的问题。 他们主屏幕上的下载为您提供1.4.4版本。 如果你在对象资源管理器中查看它是抽象的。 如果你去他们的下载并获取二进制文件 zip,你会得到不是抽象的 1.5 版本。