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
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
WPF performance profiling tools
The WPF Performance Suite is a set of performance profiling tools that allow you to analyze the runtime behavior of your WPF application.
0 commentsSave Tags: web 2.0
Call ASP.Net WebMethod from jQuery
Example of how to use jQuery in for calling ASP.NET web method
0 commentsSave Tags: ajax
7 free online editors for your asp.net site (part 2)
This is second part of a two-part article about free online editors for you Asp.Net(Web) projects
0 commentsSave Tags: web 2.0
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
Explore Silverlight project hierarchy with Silverlight Spy 2
Silverlight Spy will automatically pick up any Silverlight application embedded in the page and display it in the XAML Explorer
0 commentsSave Tags: web 2.0
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
Tag property without inheritance
The article show how to add support for Tag property without using inheritance
0 commentsSave Tags: .net
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
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
Visual LINQ Query Builder - VS 2008 Add-In
Visual Linq Query Builder helps you create Linq to SQL queries for your programs
0 commentsSave Tags: web 2.0
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
Must Have Tool for ASP.NET Developer
NetFXHarmonics DevServer is a web server hosting environment built on .NET 3.5 using WPF, WCF, and LINQ technologies that allows multiple instances of... more »
0 commentsSave Tags: web 2.0
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
6 free online editors for your asp.net project
A list of web editors that can be easily embedded in your asp.net projects
0 commentsSave Tags: how-to
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
How to Rename Multiple Files At Once
A cool trick for renaming files you did not know
0 commentsSave Tags: web 2.0
Is WPF Data Binding thread safe?
We wanted to check weather WPF data binding is thread safe, and made a little test (using .NET 3.5).
1 commentsSave Tags: .net, microsoft