Category Archives: .Net

Study Group – F#

Chris Marinos led study group this week on F#. F# is Microsoft’s foray into functional programming; it isn’t strictly functional, but it is clearly designed with that purpose in mind. I thought I had gotten some of experience with functional … Continue reading

Posted in .Net, F#, Study Group | Comments Off on Study Group – F#

Convert to Linq!

While writing my last post, I was looking at the code to see if it was really something I wanted to post for general scrutiny and saw that I could use Linq to do the same thing. Here’s the old … Continue reading

Posted in .Net, Linq | Comments Off on Convert to Linq!

P2P with WCF

A couple posts ago I was doing some experimentation with TCPClient and TCPServer. The bulk of my testing was done by creating a simple chat application. After that I decided I wanted to figure out how to do the same … Continue reading

Posted in .Net, C#, Networking, WCF | Comments Off on P2P with WCF

Windows 7 API Code Pack

Jay Wren told me yesterday about the Windows 7 managed API code pack that Microsoft has released. I spent a little bit of time looking at it today, and I’ve got to say that I’m pretty impressed. It provides interop … Continue reading

Posted in .Net, Windows 7 | Comments Off on Windows 7 API Code Pack

A Small TCP Experiment

I’m going to be writing some networking code for a personal project, so I spent some time learning to use TcpClient/TcpListener. After starting to learn them, I thought it might be interesting if I could send a delegate across the … Continue reading

Posted in .Net, C#, Networking | Comments Off on A Small TCP Experiment