amira88, on 11 Oct, 2009 - 01:43 AM, said:
thanks for this tutorial,
i make 2 projects the first one contain the ChatServer class wich is contained b the "PC" name space.The second project contain the ChatClient class .
in the second project i need to use first project so i wrote
but i've this ERROR
"The type or namespace name 'PC' could not be found (are you missing a using directive or an assembly reference?) "
what i have to do!
thx
i make 2 projects the first one contain the ChatServer class wich is contained b the "PC" name space.The second project contain the ChatClient class .
in the second project i need to use first project so i wrote
using PC;
but i've this ERROR
"The type or namespace name 'PC' could not be found (are you missing a using directive or an assembly reference?) "
what i have to do!
thx
The fastest fix is to change line "using PC;" to somethign like "using PC = ChatServer;" (replace "ChatServer" with your namespace)