C# Articles (379) - Page 25

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.
 
Deepak
C Sharp - Useful methods - 3 [ IsValidEmailAddress] 
Last updated on: 04 Feb 2009 11:27:32 PM by Deepak | Views: 7922 | Category: C# |
Votes: 1 | Rating: 3 out of 5
IsValidEmailAddress This is used to Validating the Email Address
Deepak
C Sharp - Useful methods - 2 [ GetNumeric] 
Last updated on: 04 Feb 2009 10:29:34 PM by Deepak | Views: 6321 | Category: C# |
GetNumeric Function This method will return the digits between the strings, if no digits found it returns 0
Deepak
C Sharp - Useful methods - 1 [ IsNumeric] 
Last updated on: 04 Feb 2009 11:05:10 PM by Deepak | Views: 9956 | Category: C# |
Votes: 1 | Rating: 4 out of 5
IsNumeric ------------ Developer most of the time come across reusable codes. I have planned to collect all the reusable codes which come across my development experience and want to share with all. This is one of the code which is always necessory
Amit.jain
Creating AutoComplete TextBox in Windows Froms using C# 
Last updated on: 13 Jan 2009 06:53:10 AM by Amit.jain | Views: 181393 | Category: C# |
In this example i am explaining how to create AutoComplete TextBox or ComboBox in winforms using C#
SheoNarayan
Classes in C# 
Last updated on: 17 May 2009 04:20:07 AM by SheoNarayan | Views: 17204 | Category: C# |
Classes are the irreplaceable ingredient of any .NET assembly. A Class is the generic definition of what an object is a template. The keyword class in C# indicates that we are going to define a new class (type of object)
SheoNarayan
Iterative Statements in C# (Loops in C#) 
Last updated on: 17 Nov 2008 11:33:23 AM by SheoNarayan | Views: 15387 | Category: C# |
Iterative statements repeat a particular statement block until a condition has been satisfied.
SheoNarayan
Nullable type in C# 
Last updated on: 14 Nov 2008 10:38:49 PM by SheoNarayan | Views: 7693 | Category: C# |
Nullable types are instances of the System.Nullable struct. A nullable type can represent the normal range of values for its underlying value type, plus an additional null value.
  • SheoNarayan
    Premitives (Data Types) in C# 
    Last updated on: 14 Nov 2008 09:47:29 PM by SheoNarayan | Views: 7396 | Category: C# |
    Votes: 1 | Rating: 5 out of 5
    Data types that is commonly called as Primitives are predefined in C#. There are several data types in C#.
    SheoNarayan
    Verbatim Character in C# 
    Last updated on: 14 Nov 2008 09:51:23 PM by SheoNarayan | Views: 8532 | Category: C# |
    Verbatim character is one of the feature in C# that prevents the translation of string or identifier, where it is treated "as-is".
    Questpond
    On Error Resume Next in C# 
    Last updated on: 21 Oct 2008 08:41:55 AM by Questpond | Views: 47157 | Category: C# |
    This is a very simple article and some people may really find it not worth to be termed as article. One of my junior was working for a full day on this. Just wanted to ensure that other people do not face the same problem. In this article we will try to understand how we can simulate the On Error Resume Next feature of VB.NET in C#. We all understand that it’s a bad thing to handle errors, but sometimes some process should continue irrespective there is error or not.
    SheoNarayan
    Working with Collections - Generic List 
    Last updated on: 04 Oct 2008 06:45:06 AM by SheoNarayan | Views: 25859 | Category: C# |
    Votes: 1 | Rating: 1 out of 5
    This article describes about List class that is generic equivalent of ArrayList class.
    SheoNarayan
    Working with Value Types Variables 
    Last updated on: 26 Sep 2008 12:55:25 AM by SheoNarayan | Views: 10235 | Category: C# |
    This article describes about most of the Value Types variables, its uses and how to use them.
    SheoNarayan
    Working with Collections - ArrayList 
    Last updated on: 03 Oct 2008 11:48:00 AM by SheoNarayan | Views: 35701 | Category: C# |
    Votes: 2 | Rating: 4.5 out of 5
    This article describes about ArrayList, its various methods and uses. ArrayList is a simple and resizable index-based collections of objects. This is a kind of array that is capable of increase its size dynamically.
    SheoNarayan
    Solution of problem having same method name in two interfaces inheriting a class 
    Last updated on: 07 Sep 2008 09:58:07 AM by SheoNarayan | Views: 37009 | Category: C# |
    Votes: 1 | Rating: 5 out of 5
    This articles describes the solution of having the same method name in two different interfaces inheriting a class.
    Deeraj
    Recursive FTP folder deletes in .NET 2.0 
    Last updated on: 24 Mar 2009 11:20:54 AM by Deeraj | Views: 93917 | Category: C# |
    This article aims at explaining recursive ftp deletes without using the concept of recursion. As far as I know there is no way of deleting the ftp folder recursively using inbuilt .NET API. However, I made use of the available FTP API that ship with .NET 2.0 in accomplishing my mission.