How to Convert List(T1) to List(T2)
Did you ever need to convert List(T1) to List(T2)? One example might be when implementing an interface. you might need to expose a collection of other... more »
0 commentsSave Tags: .net
How To Add a MouseDoubleClick Event To Any WPF Control
I needed to implement a MouseDoubleClick Event on a WPF Grid. I said Ha, easy but as i went on to implement it i realized that the Grid has no... more »
0 commentsSave Tags: .net
Beware of List(T).Find
Llist(t).Find returns the first element found that matches a given criteria, but what happens if no such element found?
0 commentsSave Tags: web 2.0
A Programming Job Interview Challenge #3
This is challenge number 3 in our programming job interview questions column. Good Luck!
0 commentsSave Tags: how-to
6 Useful Visual Studio Tweaks You Need To Know
Here is a list of 6 Visual Studio tweaks you can do to make your development experience much better...
0 commentsSave Tags: web 2.0
11 More Visual Studio Shortcuts You Should Know
Following our First Visual Studio Shortcuts post here is another batch of shortcuts.
0 commentsSave Tags: tools, tools
A Programming Job Interview Challenge #2
come test your strength with a programming job interview challenge
0 commentsSave Tags: how-to
Call ASP.Net WebMethod from jQuery
Example of how to use jQuery in for calling ASP.NET web method
0 commentsSave Tags: ajax
A Great Visual Studio Add-on You Must Have
Recently I found out this great add-on for Visual Studio 2008 called PowerCommands. PowerCommands Extends the functionality of Visual Studio 2008 by... more »
0 commentsSave Tags: how-to
A Programming Job Interview Challenge
Recently, I ran into an interesting job interview question in C++ which I want to share. Lets take a look at the following code...
0 commentsSave Tags: c-and-cpp
LINQ to XML in 3 easy steps
Linq to xml provides an easy query interface for XML files. In the following example I will demonstrate how to use it for reading and writing data... more »
0 commentsSave Tags: .net
A Great XPath Query Tool
Visual XPath is a free graphical XPath query tool which have many great features, some of those features are: Load an XML file and see it in a form of... more »
0 commentsSave Tags: how-to
WPF DataTemplate for Interfaces? Not Supported
Datatemplates are a great feature introduced in wpf, there is just one problem here, datatemplates are good for object types but not for interfaces...
1 commentsSave Tags: .net
Is [Serializable] == ISerializable? No!
The .NET Framework provides an easy-to-use serialization mechanism by using the [Serializable] attribute. If so why do we need the ISerializable... more »
0 commentsSave Tags: .net
Keyboard Shortcuts on Steroids With a Cute Little App
A great little App that will make assigning keyboeard shortcuts easy
0 commentsSave Tags: windows, windows
A Bug in WPF Static Resources?
A very strange behavior of WPF data binding to a static array. Perhaps a bug in WPF?
0 commentsSave Tags: how-to
Don’t Use Double.Nan
Comparison of a double with double.Nan (Not a Number) will always return false. If we want to check whether a specific double is...
0 commentsSave Tags: .net
10 Visual Studio Shortcuts You Must Know
A great list of 10 Visual Studio Shortcuts any software developer must know and use.
0 commentsSave Tags: .net, how-to
How to use Aggregate functions with LINQ to SQL
LINQ to SQL maps the relational database into an object model, and when the program runs the queries in the object model are translated into SQL. SQL... more »
0 commentsSave Tags: how-to
How to Create a Word Like Font Selection ComboBox
If you are writing an application that uses font you will find this post very useful. Making a font selecting ComboBox that shows a preview of the... more »
0 commentsSave Tags: .net, .net
Unhandled Exceptions - Handle them
Fortunately, the .Net framework makes it possible to take care of the exceptions that slipped out of our hands: the un-handled exceptions.
0 commentsSave Tags: .net, .net
Free Tool - Extract Hard Coded Strings to Resource Files
A Microsoft tool - Resource Refactoring Tool. This tool provides developers an easy way to extract hard coded strings from the code to resource files.
1 commentsSave Tags: tools, tools
How to Expose Your Collections Safely
We use collections all the time. Many times we have to expose them to users of our classes. How to expose collection safely so no one can change them... more »
0 commentsSave Tags: .net
Is It Possible? .NET Applications for iPhone?
It seems that soon we will be able to write .NET applications for the iPhone
0 commentsSave Tags: .net
4 Key Differences Between Implicit and Explicit Interface Implementation
Whenever we need to implement an interface in C#, two options pops up (click Ctrl+’.'). Implicit vs explicit interface implementation, what shall be... more »
0 commentsSave Tags: .net