我正在关注.NET远程处理的实验教程,为此我需要创建TcpChannel对象。为此,我添加了使用System.Runtime.Remoting命名空间,但它仍然给我一个错误找不到类型或命名空间名称'TcpChannel'(您是否缺少using指令或程序集引用?)
我正在使用Visual Studio 2015社区版。我无法弄清楚导致这个问题的原因。我甚至用Google搜索了它。这是我的代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Remoting;
namespace RemotingServer
{
class Program
{
static void Main(string[] args)
{
TcpChannel channel = new TcpChannel(8001);
}
}
}
答案 0 :(得分:1)
TcpChannel 类位于 System.Runtime.Remoting.Channels.Tcp 中,因此您必须获取using
。另请检查您是否在项目中引用了 System.Runtime.Remoting.dll 。