什么啊? 
using System;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
using System.Net;
using System.Net.Sockets;
namespace ConsoleApplication1
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
class Class1
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
/// 

[STAThread]
static void Main(string[] args)
{

TcpChannel chan = new TcpChannel(8085);
ChannelServices.RegisterChannel(chan);
RemotingConfiguration.RegisterWellKnownServiceType(Type.GetType("RemotingSamples.HelloServer,object"), "SayHello", WellKnownObjectMode.SingleCall);
System.Console.WriteLine("点击 <enter> 退出...");
System.Console.ReadLine();
return 0;
}
}
}
编译:
C:\Documents and Settings\Administrator\桌面\ConsoleApplication1\Class1.cs(4): 类型或命名空间名称“Tcp”在类或命名空间“System.Runtime.Remoting.Channels”中不存在(是否缺少程序集引用?)怎么解决?