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
Call ASP.Net WebMethod from jQuery
Example of how to use jQuery in for calling ASP.NET web method
0 commentsSave Tags: ajax
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
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
Automating Multipart Zip File Creation
Automatically creating multipart zip files
0 commentsSave Tags: how-to
The Creative Synthesis Collaborative
The Collaborative is an independent, nonprofit research and education institution dedicated to open source ideals in research and education, and... more »
0 commentsSave Tags: open source, open source
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
Embedded .Net HTTP Server
A simple HTTP server that can be embedded in any .Net application
0 commentsSave Tags: .net
Simple client-server interactions using C#
Introduces a couple of cover classes to provide event-driven interaction with TCP/IP sockets and simple message protocols
0 commentsSave Tags: .net
Adding Meta Tags to the Head in ASP.NET 2.0
The HtmlMeta class is provided for just that. You can easily create a HtmlMeta object and add it to the Controls collection in the HtmlHead class... more »
0 commentsSave Tags: .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
C# access modifiers quick reference
A quick description of access modifiers with a diagram showing accessibility limits.
0 commentsSave Tags: .net, .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
Visual Studio 2008 support for building SilverLight applications
Visual Studio 2008 support for building SilverLight applications
0 commentsSave Tags: web 2.0
Dr. WPF introduces Conceptual Children
Dr. WPF is amazingly brilliant. He figured out a way to create a panel whose children are neither visual or logical children, but simply “conceptual”... more »
0 commentsSave Tags: .net
Consolidate Your Binding Code
I've noticed that in data driven UI projects there is often lots of repeated code wherever there is data binding. In this article we'll look at... more »
0 commentsSave Tags: .net
Working with binary large objects (BLOBs)
This article illustrates how to work with binary large objects (BLOBs), it will show you how to save and retrieve BLOB values in a database
0 commentsSave Tags: .net
Where is my BinaryReader.ReadFloat ?
BinaryReader is a class that reads primitive data types as binary values in a specific encoding (see MSDN for more details). The usage of this class... 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
Customize SpellCheck on WPF Text Controls
WPF has a great feature for spell checking called SpellCheck, which is applied on TextBox and RichTextBox controls. In this post I will explain about... more »
0 commentsSave Tags: how-to