C# Articles (379) - Page 18

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.
 
Gajananbok
Introducing Queue in C# 
Last updated on: 14 Dec 2011 10:29:27 AM by Gajananbok | Views: 9063 | Category: C# |
Votes: 1 | Rating: 3 out of 5
This article demonstrates how to implement queue in C# with the help of easy examples. Queue is a data structure element where elements are in form FIFO.
Hmanjarawala
How to perform Asynchronous Processing in .Net 
Last updated on: 24 Nov 2011 05:05:15 AM by Hmanjarawala | Views: 9900 | Category: C# |
Votes: 1 | Rating: 4 out of 5
This article demonstrate how to perform asychronous task processing in .Net using events and delegates
SheoNarayan
What are "Delegates" in C# 
Last updated on: 21 Nov 2011 10:39:39 PM by SheoNarayan | Views: 40309 | Category: C# |
Votes: 4 | Rating: 4 out of 5
Delegates, a word that frequently pops up in the Interviews and many candidates gets confused and nervous when they hear this word. In this article, I am trying to explain delegates in easy to understand way, hopefully after going through this article, you will feel comfortable using delegates and answering any question related with delegates.
Lalitkhanna
Sorting on Multiple fields in List or Arraay 
Last updated on: 27 Sep 2011 03:24:51 AM by Lalitkhanna | Views: 10823 | Category: C# |
This article is very useful in term of using lambda expression.I can remember my old days there if you want to do sorting on multiple fields using Arrays or List then you have to write lot of code but now thanks to lambda expression which gives us unique functionality in .Net.
Questpond
What is the use of "VAR" keyword in c#? 
Last updated on: 05 Sep 2011 09:38:31 AM by Questpond | Views: 87922 | Category: C# |
Votes: 3 | Rating: 5 out of 5
Var keyword is an implicit way of defining DataTypes. Implicit means indirect way of defining variable types.
ttarakarajesh-8732
Connecting with MS Access 2007 database from C# Windows application 
Last updated on: 24 Aug 2011 06:08:30 AM by ttarakarajesh-8732 | Views: 57890 | Category: C# |
This article explains to us , how to connect with MS Access 2007 database from C# Windows application.
Itorian
Destructors in C# 
Last updated on: 23 Aug 2011 04:20:14 AM by Itorian | Views: 11532 | Category: C# |
In this quick post we will learn all about destructors and its all properties.
  • Poonamkalra
    C# Out Parameter Explored 
    Last updated on: 16 Aug 2011 10:11:36 AM by Poonamkalra | Views: 8946 | Category: C# |
    While going through the msdn link http://msdn.microsoft.com/en-us/library/t3c3bfhx%28v=vs.71%29.aspx that contains documentation about "out" method parameter, I got stuck with the line "The value of an out argument will not be passed to the out parameter".
    Dhirendra
    Example of Implemeting interface in structure and in class 
    Last updated on: 12 Aug 2011 10:32:57 AM by Dhirendra | Views: 8694 | Category: C# |
    This article shows example of implementing interface into structure and how the interface types will be considered. weather value type or reference type even if it is implemented in structure value type..
    Ksuresh
    Working with DateTime data type in C# 
    Last updated on: 10 Aug 2011 06:40:41 AM by Ksuresh | Views: 48450 | Category: C# |
    In this article we are going to learn DateTime data type, its methods and properties.
    Itorian
    Namespaces in C# 
    Last updated on: 10 Aug 2011 02:33:49 AM by Itorian | Views: 8370 | Category: C# |
    In this post you will learn how to write custom namespaces and nested namespaces in C#.
    Ksuresh
    DataTypes in C# 
    Last updated on: 30 Jul 2011 09:13:26 AM by Ksuresh | Views: 60597 | Category: C# |
    Votes: 1 | Rating: 5 out of 5
    In this Article we are going to learn about Data Types in C#
    Ksuresh
    C# Fundamentals 
    Last updated on: 26 Jul 2011 06:07:06 AM by Ksuresh | Views: 25628 | Category: C# |
    Votes: 3 | Rating: 3 out of 5
    In this article we are going learn OOPs princeples, sample program in C#, C# keywords and identifiers.
    Certifiedkiller2000
    Private Constructor in C# 
    Last updated on: 17 Jul 2011 08:13:46 AM by Certifiedkiller2000 | Views: 17980 | Category: C# |
    Votes: 2 | Rating: 4 out of 5
    In this article we will learn creating a private contructor and instantiating an object.
    Esensahoo
    Delegates to Events a close look and practical use 
    Last updated on: 16 Jul 2011 02:37:24 AM by Esensahoo | Views: 17582 | Category: C# |
    Votes: 2 | Rating: 5 out of 5
    This article describes basics about delegate and events and later shows how it can be used in project or real time scenario.