Partial methods are a new feature in the .NET programming world. The earlier versions of .NET had partial class, partial structures, part...
Showing posts with label Interview Questions. Show all posts
Showing posts with label Interview Questions. Show all posts
Wednesday, May 29, 2013
Sunday, January 27, 2013
Interview Question: What is Duck Typing?
"Duck Typing" is not a common interview question but one of the interviewer in a panel may ask you this just to check your kno...
Tuesday, September 4, 2012
CSharp Interview Question: What is Action in C Sharp
Action is type of delegate It returns no value. It may take 0 parameter to 16 parameters. For example below Action can encapsulates ...
Sunday, September 2, 2012
Types of Constructor in .Net
Constructor is nothing but a function (with the same name as Class) and is used for initializing the members of a class whenever an class...
Wednesday, August 29, 2012
Basis Topics of interview questions for Beginner or 1 Year experience in .Net
For 1 year you have to prepare all basics of .net (c# or vb,sql server, asp.net ). Mainly OOPs concepts. a.Abstraction b.Encapsulati...
Monday, August 27, 2012
A Beginner's Tutorial on String Comparison in C#
Usually in our applications when we want to compare two strings we use the equality operator. Under most scenarios this will work properl...
Func and Action Delegates
The .Net Framework 3.5 has introduced two sets of System-Defined Delegates named Func andAction. Action<> and Func<> are extr...
Saturday, July 21, 2012
Metro Applications - FAQ
With the advent of Microsoft Windows 8, Windows Phone 8 and Office 2013, Microsoft is now all about Metro UI and Metro Apps. And when Win...
Tuesday, July 17, 2012
Return Multiple Values(or Objects) in VB.NET
You might have searched "How to return multiple objects in VB.Net" in google and you might have got a lot of Ir-relevant articl...