Using socket programming some time it gives error that port is already in use
is there anyway to release/close the port?
e.g 5657 is my port no. can i release the port manually ? using c#
Thanks
Using socket programming some time it gives error that port is already in use
Share
that’s a port that any process can use. if you want to “reserve” a port, pick one < 1024 that isn’t being used, or isn’t likely to be used, by something else on your system. clobbering another process probably isn’t the right way to go about it.