Visual C# Express Edition support for remoting?
Does Visual c# Express Edition support remoting? I haven’t been able to find any information about that.
To enable remoting you have to create and register a channel ala:
ChannelServices.RegisterChannel(new TcpChannel());
When I try to use the following namespace:
using System.Runtime.Remoting.Channels.Tcp;
and compile - I get this error message:
The type or namespace name 'Tcp' does not exist in the namespace System.Runtime.Remoting.Channels' (are you missing an assembly reference?)
According to the .NET framework class library reference the namespace should exist. This suggests thatVisual C# Express Edition doesn’t support remoting, or what?

