.NET

While working on XML serializers I wandered into the XSLT land. It turned out that XSLT support in .NET is not stellar. Well, you may already know that, but it […]

What are the options? This is what I found so far: * Dynamically compile C# or VB.NET code into an assembly and execute it – I used this route before […]

Following up on the WCF config theme. Back in April I wrote a config merger for our CAB application. General scenario was as follows: we had a central “shell” application […]

Thoughts from one of my last projects. It is difficult to create a well-isolated component that uses a WCF client under the covers. WCF reads end-point configuration settings from the […]

One of my friends said that he admires Microsoft marketing genius for creating a Java clone and bringing it to commercial success. But is .NET really a Java clone? On […]

It looks like subtracting dates in .NET is done purely mechanically, ignoring such subtleties as time zones or daylight savings time. In particular, the UTC flag is ignored when subtracting […]

I wanted to create a logger that writes either to a file, or to the System.Diagnostics.Trace. To my astonishment, I found that .NET class library does not have a TextWriter […]