P
Petded
Hi,
can anyone explain to me why
vc++ managed use this
s= gcnew Socket(
AddressFamily::InterNetwork,SocketType::Stream,ProtocolType::Tcp );
whereas c# use this
s = new Socket(AddressFamily.InterNetwork, SocketType.Stream,
ProtocolType.Tcp);
Why c++ uses :: and what does it represent, a why c# just uses a .
Also C# only ever uses a . whereas sometimes c++ uses -> instead of ::
thanks for any help
can anyone explain to me why
vc++ managed use this
s= gcnew Socket(
AddressFamily::InterNetwork,SocketType::Stream,ProtocolType::Tcp );
whereas c# use this
s = new Socket(AddressFamily.InterNetwork, SocketType.Stream,
ProtocolType.Tcp);
Why c++ uses :: and what does it represent, a why c# just uses a .
Also C# only ever uses a . whereas sometimes c++ uses -> instead of ::
thanks for any help