C# Articles (379) - Page 23

Articles posted by registered members of DotNetFunda.com. You can also post an article and win monthly prizes as well as gain community credit points.

379 records found.
 
Abhisek
Delegate in C# 
Last updated on: 02 Jun 2010 12:08:39 PM by Abhisek | Views: 12584 | Category: C# |
This article describes what is a delegate and how to use it with a simple delegate example. As delegate is a vast chapter you can not find the details of delegate in this article. This article just explains the key features and attribute of a C# delegate.
Bubbly
Infragistics - Nested Tables in UltraGrid 
Last updated on: 24 Oct 2009 01:59:11 AM by Bubbly | Views: 21923 | Category: C# |
This article demonstrates simple usage of Ultragrid
Abhisek
Handling a buttons Event in C# 
Last updated on: 12 Oct 2009 08:38:25 PM by Abhisek | Views: 9488 | Category: C# |
This article describes about the events and shows how to handle different events of a button in C# with a simple example.
Abhisek
Abstract Method and Abstract Class 
Last updated on: 11 Oct 2009 06:41:11 PM by Abhisek | Views: 11146 | Category: C# |
Votes: 2 | Rating: 3.5 out of 5
This article describes about Abstract class and methods in C# with examples.
Abhisek
Interface in C# 
Last updated on: 11 Oct 2009 06:44:37 PM by Abhisek | Views: 9533 | Category: C# |
This article describes about the use of Interface in C#.
Mouli
New Features in C# 2008 
Last updated on: 04 Oct 2009 07:42:56 PM by Mouli | Views: 8953 | Category: C# |
This article introduces new features added in C# 3.0.
Mouli
Checking Object State before Updating Database 
Last updated on: 22 Sep 2009 02:44:25 AM by Mouli | Views: 9666 | Category: C# |
This article provides different approaches to check whether the object state is changed before updating the information in the data store. Examples and concepts are all related C# .Net.
  • Mouli
    Custom CacheManager Implementation for Windows/Console applications 
    Last updated on: 20 Sep 2009 09:11:18 PM by Mouli | Views: 11449 | Category: C# |
    This article discusses few techniques in maintaining data in memory for quick access. A sample CacheManager implementation is shown with this article for C# Console/Windows applications usage.
    Gurumatrix2004
    Access Modifiers in C# 
    Last updated on: 16 Sep 2009 11:38:18 PM by Gurumatrix2004 | Views: 13624 | Category: C# |
    This article will discuss about Access Modifier.
    Initiotech
    Specialized String Collection Types in .NET 2.0 
    Last updated on: 16 Sep 2009 01:12:08 PM by Initiotech | Views: 9288 | Category: C# |
    This article will introduce some of the String Specialized Classes in DotNet Framework 2.0
    G_arora
    Discussing Constructors in C# 
    Last updated on: 15 Sep 2009 05:58:48 AM by G_arora | Views: 11967 | Category: C# |
    Votes: 1 | Rating: 5 out of 5
    In a simple words Constructor is nothing but a method, a special kind of method of a class, which gets executed when its (class) object is created. Now, let’s take above in broader sense, a constructor is a class method automatically executed whenever class’s object is created or whenever class is initialized
    Gurumatrix2004
    What is Nunit? 
    Last updated on: 09 Sep 2009 02:41:58 AM by Gurumatrix2004 | Views: 33816 | Category: C# |
    This Section will be cover what is nunit ?
    Lakhangarg
    Definition of Method Overriding for Beginners 
    Last updated on: 30 Aug 2009 09:49:29 AM by Lakhangarg | Views: 8981 | Category: C# |
    Definition of Overrtide for Beginners with the help of a example.
    Lakhangarg
    Parameter in C# 
    Last updated on: 21 Aug 2009 12:28:53 AM by Lakhangarg | Views: 10483 | Category: C# |
    Parameters in C#: In C Sharp(C#) we can have three types of parameters in a function. The parameters can be In parameter (which is not returned back to the caller of the function), Out parameter and ref parameter (where by a reference to the variable is passed back).
    Goldytech
    Parsing Linq Queries as String with CodeDOM 
    Last updated on: 21 Aug 2009 07:50:53 AM by Goldytech | Views: 11439 | Category: C# |
    In this post I teach you how can you can dynamically compile any clr compliant code with CodeDom namespace. This article was orginally posted on my blog.