How to create video files in C# (from single images)
Today there is again a bit of C# code. I’m writing about how you can create video files in C # from individual images or bitmaps. Using the AForge library, which I have used in the already in the C#...
View ArticleThe best free .NET decompilers – the .NET Reflector alternatives
Today I want to briefly highlight a few alternatives to Redgates .NET Reflector. Former I frequently used this tool, but since it costs money and there are good and useful free alternatives, this is no...
View ArticleHow to change the size of a textbox in C#
I admit, the title sounds almost trivial. But on the second sight, it is not so easy to change the size of a TextBox control in C#, because a TextBox does not have the AutoSize property. For other...
View ArticleHow to create articles on Blogspot with C#
Today I want to show you how to create a blog article on Blogger.com/Blogspot.com with C#. For this you need first of all the Google.GData.Client.dll, which you can find inside the Google .Net API...
View ArticleSimple XML serialization in C#
Today I want to show you how to perform a XML serialization in C#. Serialization itself, means that you convert an object to another, transportable form. Using XML serialization, it is possible, for...
View ArticleHow to convert C# DateTime.Ticks into Unix timestamp
With the .NET frameworks DateTime functions you can do a lot of nice things. The handling turns out, in my opinion, very pleasant. The only requirement: You find yourself in a pure .NET environment....
View ArticleManipulate any program by using C#
This article is going to be all about how you can control, customize and extend other programs using C#. As an example scenario we’re going to be extending the default Windows program Notepad with a...
View Article