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.< 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



Answer this question

Visual C# Express Edition support for remoting?

  • JoseTA

    You need to add a reference to the assembly System.Runtime.Remoting.


  • Simon P

    Ah..... Thanks alot.
    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" />

  • Visual C# Express Edition support for remoting?