我找不到使用System.Runtime.Remoting.Channels.Tcp;以及
这里有什么问题是我的平台不支持它
我在Windows XP SP3上使用VS 2010专业版
C:\VISUAL_STUDIO_2010\C#\Remoting_Server\Remoting_Server\Program.cs(13,31): error CS0246: The type or namespace name 'TcpServerChannel' could not be found (are you missing a using directive or an assembly reference?)
答案 0 :(得分:4)
确保项目中有System.Runtime.Remoting
的引用。确保您的使用包含:
using System.Runtime.Remoting.Channels.Tcp;
答案 1 :(得分:1)
只需在项目中添加引用System.Runtime.Remoting
即可
然后你可以使用命名空间
using System.Runtime.Remoting.Channels.Tcp;
没有任何错误