C#

Working around ASP.NET MVC's Bundler ignoring file orders

I recently ran into an issue on a project, where ASP.NET MVC's bundler was failing to minify CSS files, showing this error message when navigating to the bundle's virtual path:

Read more...

Serialize a C# Object into an HTTP Query String

Sometimes you need to create a C# class that encapsulates a request parameter, say, for a REST API call.

Read more...

Quick Tip When Copying Data Between C# Streams

This is more of a personal note that might be helpful for anyone stumped why their Stream objects are not copying contents properly.

Read more...