我正在尝试启动 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 实例的正确方法吗?
保重,李