Download Distributed_Logging_DemoAppFiles - 2.06 KB
There is an important concern in designing any new application - building a reliable and high performance
By now, I’ve probably interviewed a decent amount of developers, over the years, to fill in positions that we have in our company. One thing I’ve noticed though
Download amf_examples - 309.18 KB
1. Introduction
ASP.NET Mobile Framework (AMF) is a Web Framework for making web application for most-used tablet and smart
Interface Segregation Principle
If I don't care about it, don't make me implement it!
The interface segregation principle simply dictates that you design your
I’m going to start with a simple code snippet which sorts an array of strings using LINQ.
IEnumerable<string> line = new[] {"Z" , "A" , "Ä"};
var result = l
Introduction
When you write a controller which is unit testable, it would be better to avoid any dependency to the HttpContext to make the things easier. If yo
Download SimpleLinkedList source code
Concat O(1) or O(n) ?
The .NET LinkedList is a circular doubly linked list, where each node holds a reference to its pr
Sometimes, we need to detect the browser information of the user's computer where our Silverlight application is running. We can do this using JavaScript, but s
Download source code
Challenge
Just had the first chance to apply PLINQ (Parallel LINQ) to the real task.When I am playing around with some new technology e
Download demo project - 651 KB
Introduction
This article will go over a tool that gives you the ability to create and manage multiple timelines with freely
Download demo project - 2.68 KB
Introduction
This is a simple Autocomplete Text box post which may help you. In this code, we are using XMLHTTP request
The sealed keyword is one of the very seldom used modifiers in C#. Probably most of you know what it is for, but many developers have not ever used it.
See C#
Download code (53 KB)
I've got plans for an application in which I need to know with certainty the current time. So I don't want to trust the time as reporte
In my crusade against in-line code I am endeavoring to clean up the script hell in my current project. My JavaScript is littered with these types of statements:
I have been toying with data binding in .NET for quite some time now. And ever since I started working and analyzing the binding support in .NET Framework 2.0,
Download SQLCEtools_DEMO.zip - 70.34 KB
Writing and reading data to and from a database can be cumbersome. Different database objects need to be instantiated,
Download source code
Today, we will talk about WPF Commands. When I develop a new application in WPF, I try to follow the MVVM Pattern (Model-View-ViewModel).