Does Visual c# Express Edition support remoting I haven’t been able to find any information about that.< xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
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 that Visual C# Express Edition doesn’t support remoting, or what

Visual C# Express Edition support for remoting?
JoseTA
Simon P
Not very obvious - or is it just me.
Why doesn’t VS just do that automatically!!!< xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />