Recent Comments
John on RSA using BouncyCastle: Hi, I am looking for an infrastructure like JCE in java so I can “install”...
DW on Extension methods for copying or cloning objects: I found this framework helpful. Thanks. One suggestion: in...
yoosiba on Continuous Testing for Visual Studio: Hey. I have installed your plugin into my MSVS2008. I also added to...
makeitfaster on Continuous Testing for Visual Studio: [...] Continuous Testing for Visual Studio 2008 and 2010 [...]
Sebastian Vilstrup on Continuous Testing for Visual Studio: After a few mails back and forth with Håvard, we got it...
Valamas on Continuous Testing for Visual Studio: Thank you for a wonderful product. It was only weeks ago I though...
Twitter
- @runegri There's always the Sketchup warehouse if you're looking for 3D models: http://bit.ly/bARU6i 2010/07/18
- Congratulations Spain! :) 2010/07/11
- RT @sh1mmer: I might be crazy, but I'm going to write a DNS server using Node.js. #everythingisanail 2010/07/09
Tag Archives: C#
Copyable available on GitHub
People actually download and use Copyable, and they tend to use it in scenarios I haven’t used it in. This results in bug reports and patch submissions. So far, these have been given to me by e-mail or by blog … Continue reading
Posted in Announcements, C#, Code, Technical
Tagged .net, C#, Code, copy, copyable, git, github, open source, Technical
2 Comments
Minimalistic MapReduce in .NET 4.0 with the new Task Parallel Library (TPL)
Among the news in .NET 4.0 are several additions by the Parallel Computing Platform Team. As I wandered through the documentation of the Task library with cloud computing and parallelism buzz in the back of my head, I got the … Continue reading
Posted in C#, Code, Concurrency, Technical
Tagged .NET 4.0, C#, Code, Concurrency, Parallel, Technical, TPL
Leave a comment
RSA using BouncyCastle
Trying to do RSA using BouncyCastle, but struggling to find your way around the API? In a previous post (see here) I pondered why the RSA implementation in System.Security.Cryptography is restricted to only the most common usage scenarios. I mentioned … Continue reading
Mocking HtmlHelper in ASP.NET MVC RC1 using Moq
For those of you trying to mock HtmlHelper, but finding it difficult, here’s a mock that works in ASP.NET MVC RC1.
Extension methods for copying or cloning objects
C# 3.0 includes a new feature known as extension methods, and fiddling with it triggered the idea of creating a mechanism for copying or cloning (virtually) any .NET object or graph of objects. The manifestation of that idea has become … Continue reading