Category: Uncategorized


  • First of all, there is no such thing as “the fastest” serializer, it is all contextual.But under some conditions, I would however argue that Wire is, by far, the fastest of all the .NET serializers out there. Given the following POCO type. publicclassPoco{   publicstringStringProp { get; set; }   publicintIntProp { get; set; }   publicGuid GuidProp { get; set;…

  • This weekend I decided to play around a bit with genetic programming and put evolution to the test, the test of fine art 🙂 I created a small program that keeps a string of DNA for polygon rendering.The procedure of the program is quite simple: Now to the interesting part: Could you paint a replica of the…