
How to deploy an assembly into GAC(Global Assembly Cache) ?
- Gurunatha Dogi
- Mar 20th, 2014
- 49005
- 1
This article covers complete understanding of global assembly cache,how to deploy an assembly in GAC, what are Strong name assemblies, steps to give strong name to an assembly and finally a sample code example of Global Assembly Cache using C-sharp code.

Understanding concept of Concat,Substring methods of a string class ?
- Gurunatha Dogi
- Mar 14th, 2014
- 7825
- 1
In this article we will try to understand string class methods, that is concat and substring methods in c-sharp using c# code

C# if and nested if conditional statements with an example?
- Gurunatha Dogi
- Mar 10th, 2014
- 19074
- 0
In this article we have explained in detailed about if statement, if-else statement, if-else-if statement, and nested if conditional statements with an examples using c# code in console application

Practical - Count repeated words in a string using Regular Expression ?
- Gurunatha Dogi
- Mar 8th, 2014
- 16237
- 0
In this article we have demonstrated a number of occurrences of a given word in a given string using regular expression or REGEX in just 5 steps using console application program.

What are generic collections in C# using an example?
- Gurunatha Dogi
- Dec 7th, 2013
- 47948
- 7
In our previous article we saw on generics and how we separated the data-type logic from a logical code snippet using generics. Taking forward that same logic, means separating collection logic i.e from data-type, we will see different types of generic co

What are generics in C# using an example?
- Gurunatha Dogi
- Dec 2nd, 2013
- 44118
- 5
In this article we will try to understand the concept of generics/ use of generics using a simple example which will demonstrate how to separate the data-type logic from custom code using generics.

Step By Step Select, Insert, Update and Delete using ASP.NET C# and ADO.NET
- Gurunatha Dogi
- Sep 17th, 2013
- 388963
- 55
In this article we have explained you step by step insert, update, select and delete using asp.net c-sharp and ado.net. This article is useful for beginners who want to start up with the asp.net programming and also understanding the various concepts and

Use of string.Format method in C# with an example?
- Gurunatha Dogi
- Aug 25th, 2013
- 40602
- 1
In this example we will try to understand formatting a string (format characters) using string.Format method in c-sharp with a simple example.

What is mixed mode arithmetic expression with an example?
- Gurunatha Dogi
- Jul 31st, 2013
- 41184
- 0
In this article we will understand how to execute mixed mode arithmetic expressions in c-sharp, vb.net, java or in any different languages.

What is an event handler and explain how it is designed ?
- Gurunatha Dogi
- Jul 22nd, 2013
- 10707
- 0
In this article we will try to understand how to create or design a custom event handle and delegates using a simple example in c-sharp.

Is C# is Modern, Type Safe, Versionable and Inter operability Language ?
- Gurunatha Dogi
- Jul 20th, 2013
- 19011
- 1
In this article we will discuss some of the features of c-sharp like is C# is Modern, Type Safe, Versionable and inter operability Language using an example.

Discuss Boxing and Unboxing in the context of value types and reference types
- Gurunatha Dogi
- Jul 9th, 2013
- 11344
- 1
In this article we will discuss on boxing and unboxing in c# using value types and reference types.

Understanding Switch Statement with the help of an example
- Gurunatha Dogi
- Jul 7th, 2013
- 8485
- 0
In this article we have covered about switch statement in c-sharp using a real time example

Checked and Unchecked operators using an example
- Gurunatha Dogi
- Jul 7th, 2013
- 13948
- 1
In this article we have covered about checked and unchecked operators in c-sharp using an example.