How to register a global hotkey for your application in C#

How to register a global hotkey for your application in C#

Register a hotkey for your application that can be triggered even if your form is minimized and does not have focus. More »

How to download a file in C# (progressbar and download speed)

How to download a file in C# (progressbar and download speed)

Learn how to download files in C# while displaying the percentage and the download speed. More »

UDP hole punching implementation in C#

UDP hole punching implementation in C#

Learn how to implement UDP hole punching so you can make your clients life a lot easier by not forcing them to open ports on their end. More »

 

Visual Studio 2013 is now available

The new version of Visual Studio is now available. Visual Studio 2013 comes with numerous of new features as well as a new version of the .NET Framework (.NET Framework 4.5.1).

The new .NET Framework includes automatic binding redirection for assemblies which allows developers to add binding redirects to the app configuration file if the application or its components reference multiple versions of the same assembly. For more information visit How to: Enable and Disable Automatic Binding Redirection.

You can find more information as to what’s new in the new Visual Studio 2013 at What’s New in Visual Studio 2013.

You can find the download link to both the online and offline installers below.

Download

Share on FacebookTweet about this on TwitterShare on Google+Share on StumbleUponShare on LinkedInShare on RedditPin on PinterestShare on TumblrDigg thisPrint this pageEmail this to someone

Windows 8.1 is now available

As scheduled Windows 8.1 is now available to download for free for all Windows 8 users. The upgrade is available through the store app on Windows 8 or by navigating to windows.com/buy.

Windows 8.1 comes with new features as well as improvements to the old ones. For more information as to what Windows 8.1 has to offer visit What’s New in Windows 8.1.

Share on FacebookTweet about this on TwitterShare on Google+Share on StumbleUponShare on LinkedInShare on RedditPin on PinterestShare on TumblrDigg thisPrint this pageEmail this to someone

Windows 8.1 release date confirmed

The release date for the Windows 8 free upgrade (also known as Windows 8.1) was confirmed a few days ago by Microsoft.

Windows 8.1 will become available through the Windows Store on October 18th.

For those that are not aware what Windows 8.1 is all about feel free to read more details about the features Windows 8.1 comes with at What’s New in Windows 8.1

Share on FacebookTweet about this on TwitterShare on Google+Share on StumbleUponShare on LinkedInShare on RedditPin on PinterestShare on TumblrDigg thisPrint this pageEmail this to someone

RC4 cypher in C#

Main method:

Usage:

Share on FacebookTweet about this on TwitterShare on Google+Share on StumbleUponShare on LinkedInShare on RedditPin on PinterestShare on TumblrDigg thisPrint this pageEmail this to someone

ROT-13 cypher in C#

ROT-13 is a letter substitution cypher that replaces a letter with the letter 13 letters after it in the alphabet. ROT-13 is an example of the Caesar cypher with the difference that Caesar cypher allows you to specify the number of letters to shift.

Main method:

Usage:

Share on FacebookTweet about this on TwitterShare on Google+Share on StumbleUponShare on LinkedInShare on RedditPin on PinterestShare on TumblrDigg thisPrint this pageEmail this to someone