Onlinebuff : Page 2 - Tutorials on C# Articles
There are 49 listed articles in C# Interview Questions

Understand params parameter with an example in C#?
- Gurunatha Dogi
- Jun 6th, 2014
- 17839
- 1
In this article we have explained params parameter with an example in c-sharp code and we have also stated three restrictions in declaring params parameter.c

How to deploy an assembly into GAC(Global Assembly Cache) ?
- Gurunatha Dogi
- Mar 20th, 2014
- 54232
- 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
- 8034
- 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
- 19361
- 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
- 17012
- 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
- 48445
- 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
- 44384
- 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.

Use of string.Format method in C# with an example?
- Gurunatha Dogi
- Aug 25th, 2013
- 41124
- 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
- 43271
- 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
- 11098
- 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
- 19573
- 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
- 11598
- 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
- 8686
- 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
- 14456
- 1
In this article we have covered about checked and unchecked operators in c-sharp using an example.