Did you know? DZone has great portals for Python, Cloud, NoSQL, and HTML5!
.NET Zone is brought to you in partnership with:
  • submit to reddit
Robert Maclean05/23/12
107 views
0 replies

.NET 4.5 Baby Steps, Part 6: ISourceBlock

The ISourceBlock interface is implemented on the “publisher” like blocks and it has a very interesting method: LinkTo. Robert Maclean explains its purpose in this article.

Alexander Beletsky05/23/12
105 views
0 replies

Github for Windows Now Available

Alexander Beletsky does a quick overview of what's coming up in the GitHub for Windows build that was recently released by the GitHub team.

Mitch Pronschinske05/21/12
2106 views
0 replies

Hadoop MapReducers in .NET - Making C# and VB First Class Citizens in Hadoop

Why would anyone want to build Hadoop MapReducers in .NET? For one, Hadoop is a Java tool and JNBridge thinks they've found a way to make .NET a first class citizen by using their .NET to Java interop technology.

Den Delimarsky05/20/12
621 views
0 replies

Looking at Windows 8 Metro App Internals? The Path Has Changed In The Consumer Preview.

Den Delimarsky shows where the APPX applications are downloaded from the Windows Store, in case developers who used the Deverloper Preview are wondering where those moved.

Douglas Rathbone05/20/12
376 views
0 replies

Find, Forgive and Forget Your Coding Indiscretions With NDepend

Microsoft developers hear a lot about tools that will make them write faster, more efficient, more refactored, more unit tested code all the time. People don’t often talk of tools that help you to visualise your project’s growing code smell though.

Greg Duncan05/20/12
702 views
0 replies

.NET Framework 4.5 Gets Built-In ZIP Support

.NET Framework 4.5 has built-in capabilities for data compression using ZIP tools - something that was provided by third-parties in previous releases.

Jeremy Likness05/20/12
130 views
0 replies

How to Debug a Windows 8 Metro Secondary Tile

Jeremy Likness talks about secondary tile debugging - a process that might be new even for professional developers who haven't touched the Windows 8 SDK yet.

Greg Duncan05/19/12
214 views
0 replies

"Why I Hate Unit Testing"

Unit testing is great when done right, and it’s even good when done in a lax manner. However, it’s better to have no unit tests than terrible unit tests.

Greg Duncan05/18/12
609 views
0 replies

LightSwitch Joins VS11 as a Baked-In Core Component

LightSwitch is now a core part of the Visual Studio product line! It will be available through Visual Studio 11 Professional, Premium and Ultimate.

Greg Duncan05/18/12
484 views
0 replies

Microsoft Visual Studio 11 Beta SDK Now Available

The Microsoft Visual Studio 11 Beta SDK includes project templates, tools, tests, and reference assemblies that are required to build extensions for Visual Studio 11 Beta.

Merrick Chaffer05/18/12
606 views
0 replies

Microsoft MVC Best Practices

The ASP.NET MVC is becoming more and more popular each day. Here are some of the better practices, that if followed, may help maintain our application and also provide a means of scalability as the demand increases.

Robert Maclean05/18/12
489 views
0 replies

.NET 4.5 Baby Steps, Part 7: Regular Expression Timeouts

While the regular expression passing in .NET is fast, there are times where it can take too long for your needs. In .NET 4.5 we get the ability to timeout regular expressions if they take too long.

Lohith Nagaraj05/16/12
885 views
0 replies

Michael Crump — XAML Advocate, Telerik — Uncut & Unedited

Michael Crump is being interviewed on this episode of the Uncut & Edited videocast. He talks about XAML, Windows 8, Windows Phone and Silverlight.

Anders Abel05/16/12
1237 views
0 replies

Simplify Syntax with Extension Methods

Anders Abel explains the benefit of using extension methods, that were first introduced with LINQ in C#3.0, in various parts of your C# application.

Robert Maclean05/15/12
1058 views
0 replies

.NET 4.5 Baby Steps, Part 5: Some More Interesting Blocks

Robert Maclean continues his series on new and improved .NET 4.5 capabilities. Today he is discussing TransformBlock and BroadcastBlock.

Merrick Chaffer05/14/12
275 views
0 replies

Virtualization in WPF with VirtualizingStackPanel

Merrick Chaffer shows how to improve content stacking performance with VirtualizingStackPanel in WPF. He managed to figure out how to get virtualization to actually behave itself in a ListBox WPF control.

Jeremy Likness05/15/12
483 views
0 replies

The Task: Async and Await in a Windows Runtime World

Jeremy Likness shows some examples of async activity implemented in a Metro application, through the Task class.

Greg Duncan05/14/12
377 views
0 replies

Xamarin Designer for Android Now Avaiable for Visual Studio and MonoDevelop

Xamarin, the company behind the Mono framework, is releasing a visual application designer that allows developers to easily build applications for Android on top of Mono.

Daniel Mohl05/13/12
444 views
0 replies

Introducing Fog: A Library for Interacting with Azure from F#

Fog is a library that makes it easier to use F# to interact with Windows Azure through the Windows Azure SDK for .NET. It provides functions for many of the common activities related to table storage, blob storage, and queue storage as well as service bus queues and topics.

Sasha Goldshtein05/13/12
1225 views
0 replies

“Fitting” Performance into the Software Development Lifecycle

Where do you fit performance in the software development lifecycle? This innocent question carries the mind baggage of having to retrofit performance into an existing process.

Den Delimarsky05/12/12
1062 views
0 replies

Image Cropping In Windows 8 Metro Applications

Den Delimarsky shows how it is possible to crop an image in a Metro application, built on top of the managed WinRT APIs.

Martin Hinshelwood05/12/12
325 views
0 replies

Process Template Upgrade #7 – Overwrite Retaining History With Limited Migration

Martin Hinshelwood continues his series on TFS data migration. In option #7, he basically overwrites the old work items with new ones.

Jeremy Likness05/12/12
696 views
0 replies

The Task: Events, Asynchronous Calls, Async and Await

Jeremy Likness explains the WinRT asynchronous action model through the Task class, that took over the most frequently used .NET 4 async concepts.

Jeff Blankenburg05/11/12
792 views
0 replies

Want Your App To Be Available In The Windows 8 Marketplace?

If you want to have your Windows 8 application available on launch date, there are several steps you can take. Jeff explains one way to accomplish this task.

Robert Maclean05/11/12
891 views
0 replies

.NET 4.5 Baby Steps, Part 4: BatchedBlocks

Where ActionBlock could only be a subscriber, BatchBlock is more than that – it can be a subscriber and a publisher rolled into one. Details inside this article.