coolfire Posted December 18, 2003 Posted December 18, 2003 Hi all, where is the difference between networkstream nwstream = client.GetStream(); and stream normalstream = client.GetStream(); :confused: Performance,more functions?? Thx Quote
*Experts* Bucky Posted December 18, 2003 *Experts* Posted December 18, 2003 The NetworkStream class inherits from the base Stream class. This means that a NetworkStream has all the members of the Stream class, but it impliments them differently and it may have more members specialized to network communication. It is best to use the most specific object when this situation occurs, so stick to the NetworkStream. Quote "Being grown up isn't half as fun as growing up These are the best days of our lives" -The Ataris, In This Diary
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.