I’m learning networking in C#, and I realized that I’m completely dependent on the System.Net framework for networking (not that this is a bad thing). I don’t understand how, using standard language features, without relying on any framework, you can connect to a network via C#.
I’m learning networking in C#, and I realized that I’m completely dependent on the
Share
Like a lot of managed runtimes the underlying code relies on native functionality. I could list the Win32 APIs that are used or you could just look at the source 🙂 I prefer the latter.
.NET source has been open for about 4 years now.