C# Articles (379) - Page 10

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.
 
Sourav.Kayal
Understand “yield” keyword in C# 
Last updated on: 28 Oct 2013 11:20:30 PM by Sourav.Kayal | Views: 12945 | Category: C# |
How to use "yield" keyword in C#
Sourav.Kayal
Understand “readonly” modifier in C# 
Last updated on: 28 Oct 2013 10:35:21 PM by Sourav.Kayal | Views: 6231 | Category: C# |
How to use "readonly" modifier in C#
Sourav.Kayal
Difference between data type of C# and data type .NET framework 
Last updated on: 27 Oct 2013 10:58:08 PM by Sourav.Kayal | Views: 4595 | Category: C# |
In this article we will see how data type of C# converts into data type of .NET
Sourav.Kayal
Understand type casting using “as”,”is” and "()" operator in C# 
Last updated on: 26 Oct 2013 09:28:53 AM by Sourav.Kayal | Views: 4981 | Category: C# |
How to cast data type using "is" ,"as" and () operator
Sourav.Kayal
Performance difference between Class and Structure 
Last updated on: 26 Oct 2013 08:49:44 AM by Sourav.Kayal | Views: 3934 | Category: C# |
Performance difference between Class and Structure
Sourav.Kayal
Understand Dictionary and IDictionary in C# 
Last updated on: 26 Oct 2013 08:43:20 AM by Sourav.Kayal | Views: 59340 | Category: C# |
How to implement Dictionary and IDictionary in C#
Rama Sagar
DotNetNuke Installation and Usage Part 3 
Last updated on: 21 Oct 2013 01:22:48 PM by Rama Sagar | Views: 4258 | Category: C# |
Votes: 1 | Rating: 4 out of 5
Christoc module development templates allow us to easily start up a new development project for DotNetNuke. They do require that you already have DotNetNuke running in your development environment.
  • Rama Sagar
    DotNetNuke Installation and Usage Part 2 
    Last updated on: 21 Oct 2013 10:49:01 AM by Rama Sagar | Views: 6989 | Category: C# |
    Christoc module development templates allow us to easily start up a new development project for DotNetNuke. They do require that you already have DotNetNuke running in your development environment.
    Rama Sagar
    Learn how to Zip and Unzip files Programmatically using c# 
    Last updated on: 21 Oct 2013 10:08:41 AM by Rama Sagar | Views: 64469 | Category: C# |
    Normally we use some third-party utility to create, open and extract Zip files. At times we may want to deal with Zip files pro-grammatically. Dot NET framework 4.5 introduces some new classes in System.IO.Compression namespace that allows us to do.Using these classes we can create new Zip files, open and modify existing Zip files and extract the contents of Zip files via code.
    Sourav.Kayal
    Understand Indexer in C# 
    Last updated on: 19 Oct 2013 01:09:02 AM by Sourav.Kayal | Views: 5678 | Category: C# |
    How to use Indexer in C# class.
    Sourav.Kayal
    Understand IList and IList<T> interface in C# 
    Last updated on: 18 Oct 2013 09:31:40 PM by Sourav.Kayal | Views: 135400 | Category: C# |
    Votes: 1 | Rating: 5 out of 5
    How to use IList and IList<T> interface in C#
    Rama Sagar
    DotNetNuke Installation and Usage Part 1 
    Last updated on: 18 Oct 2013 01:10:59 PM by Rama Sagar | Views: 5167 | Category: C# |
    DNN® ( formerly DotNetNuke® ) is the leading open source web content management platform (CMS) in the Microsoft ecosystem. The product is used to build professional looking and easy-to-use commercial websites, social intranets, community portals, or partner extranets. Containing dynamic content of all types, DNN sites are easy to deploy and update.
    Sourav.Kayal
    Understand Static in C# 
    Last updated on: 17 Oct 2013 10:16:13 PM by Sourav.Kayal | Views: 5171 | Category: C# |
    How to qualify various component in C# with static keyword.
    Sourav.Kayal
    Never use try catch for input validation 
    Last updated on: 17 Oct 2013 12:10:18 PM by Sourav.Kayal | Views: 8422 | Category: C# |
    Performance impact by using try catch in input validation.
    Sourav.Kayal
    Performance difference between String and StringBuilder 
    Last updated on: 17 Oct 2013 05:38:45 AM by Sourav.Kayal | Views: 7537 | Category: C# |
    The performance difference between String and StringBuilder in string concatenation.