I'm creating a C# library and am going to be prefix most of the public classes with the protocol they use (TCP, UDP, etc) and I came to a little dilemma: should it be TCPXxxx
or TcpXxxx
?
There doesn't seem to be a standard in the .NET framework (IPAddress
versus TcpClient
).
Which you would prefer when working with a lirbary: TCPXxxx
or TcpXxxx
?