Tagged Questions
2
votes
2answers
189 views
What is a good way to show the relationship between loosely coupled classes and interfaces?
I have introduced the SOLID principles to my team and they understand and are excited about using the principles.
S - SRP - Single Responsibility Principle
O - OCP - Open/Closed Principle
L - LSP - ...
0
votes
1answer
207 views
Is it possible to disable ECHO when using socket for telnet?
Can I stop server from echo every command i send to it?
This is part of my code:
Socket s = ConnectSocket(server, port);
if (s == null)
return ("Connection failed");
int bytes = 0;
string ...