Articles
|
Extension method is a new feature introduced in C# 3.0. It is a feature where we can add new methods to an existing type without modifying the original source and recompiling it.
Posted on 8/27/2010 @ 8:58 AM
By Bala Murugan
in Csharp
|
The Numeric Converter allows you to convert a number of any bases to another base.
Posted on 10/24/2009 @ 12:44 AM
By balamurali balaji
in Csharp
|
This article demonstrates using the windows API FileOpen Dialog to get a user's file selection.
Posted on 6/26/2009 @ 10:42 AM
By Tamara Urry
in Csharp
|
Arrays are an extremely important part of any programmer's code library. There are static and dynamic arrays. This article discusses these two types of arrays and includes examples of each.
Posted on 6/26/2009 @ 10:16 AM
By Tamara Urry
in Csharp
|
What is an array?In simplest terms, an array is an organized collection. It can be a collection of anything. The important thing to remember is that it is a collection. This example uses an array of system.drawing.color.colors to change the background color of a windows form.
Posted on 6/20/2009 @ 11:07 AM
By Tamara Urry
in Csharp
|
LINQ to Objects means that we can use LINQ to query objects in a collection. We can access the in-memory data structures using LINQ. We will see more about this in this article.
Posted on 3/19/2009 @ 9:50 AM
By DotNet Tutor
in Csharp
|
A delegate is a type that references a method once delegate is assigned a method; it behaves exactly like that method. The delegate method can be used like any other method, with parameters and return value.Any method that matches the delegate’s signature.
Posted on 3/17/2009 @ 7:24 AM
By Gaurav Arora
in Csharp
|
Represents the method that defines a set of criteria and determines whether the specified object meets those criteria.
Posted on 10/1/2008 @ 7:05 AM
By Piyush Chawhan
in Csharp
|
We continue the part 2 series of design pattern interview questions.
Posted on 8/24/2008 @ 10:00 AM
By Shiv koi
in Csharp
|
Parameters in C#, Part - 7 of this article series will help us understand, passing the parameters in C#. This part will concentrate on Parameter Arrays with an example wherever necessary.
Posted on 8/17/2008 @ 10:07 AM
By Selvakumar R
in Csharp
|
|