I am writing a networking application.speed is very important in my application, I send byte through Ethernet port and speed is approximately 350 us in this case, see below figure:
http://i59.tinypic.com/2zgu8id.jpg
I want to send bit through Ethernet port to reduce speed , i have below question:
1- Will it affect in speed? How to do it? There is no such thing in msdn website.
https://msdn.microsoft.com/en-us/library/system.net.sockets.socket%28v=vs.110%29.aspx
2- Do is better to use many windows Application for many send byte ?
Along with each message you send, a header is included, containing for instance the destination address. Without this information, your message will never arrive at its destination.
A typical IPv4 header is 20 bytes. So even if it would be possible, 8 bits is not 700% more data than 1 bit, but 33% more.
Since each message includes such a header, you should try to include as much as possible data to reduce the number of messages you need to send.
If this answer does not help, you might want to include your ultimate goal, what are you trying to achieve?