Category: Development

Text Encoding Options for NLog

I’ve been using NLog for a while now and recently decided I wanted to have some of my log files written as Unicode text.  I learned that you can specify this in your <target> sections of NLog.config as follows:

Note that I only tested two different encodings, “Unicode” and “UTF-8”.  Also, “UTF-8” must have …

Continue reading

Unit Testing Private Static Methods in C#

I had never needed to unit test a private static class method in C# before, but it turns out that Microsoft created a special object type to handle just such a case. To test the private static method DetermineFilename (that takes filePath as a string parameter and returns a string) in the FileManager class, do …

Continue reading

Disable C# “var” Recommendation in ReSharper

I have been trying to use type names instead of “var” in my C# code lately.  However, ReSharper wants me to convert every type name in a declaration to “var”.  The squiggles under my type names were driving me nuts, so I decided to dig into the settings to turn this off. To disable these …

Continue reading

VS2010 Automatically Includes Your Text Files as Resources

When you right-click on your WPF project in Visual Studio 2010 (VS2010) and select Add / New Item… / Text File, the “Build Action” on this file is automatically set to “Resource.”  So, when you ship your application, this text file will be embedded within it.  If this was simply meant to be a readme …

Continue reading

Howto make MySQL & Entity Framework work with your website when your hosting company does not have Connector/Net installed

I installed MySQL’s Connector/Net v6.2 on my dev machine and used the Entity Framework to query a MySQL server without any problems.  Then I uploaded the same code to my hosting company’s server and I kept getting errors telling me “Unable to find the requested .Net Framework Data Provider”.  In order to make it work, …

Continue reading

Load more