Static Constructors, Life time and Use

It’s a quick article. In a technial interview, panel has asked me about the static constructors and how and when static constructors will be called etc. He wrote a program to extract more idea from me through.  I recreated the program to explain about it. Before going further I will fill in details about STATIC constructors. A static […]

Read more โ†’

Stack & Heap (Storage of Value Types and Reference Types)

As i have informed in my previous article, In an IT Services compnay interviewer has asked me about the Difference between value types  and reference types in .NET. I have conveyed that Value Types are stored in “Stack” (Datastructure for Memory Management Technique) and Reference Types are stored in “Heap”. He immediately asked me why […]

Read more โ†’

Reverse an Integer Value in C# (Used No Built in Functions)

Today i have attened an IT Services Company interview, where i was been asked to write the code for Reverse an Integer Value in C# with out using any Built In functions. Here is the code i formulated in my mind. Go through it. [code lang=”c-sharp”] using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace […]

Read more โ†’

.NET Remoting and Protocol support.

In the technical interview the interview panel asked me about the .NET Remoting supported protocols. Even though i have worked few applications myself in 2,3 year back i was not been able to recollect everything. So i said hey it will support only “TCP” right, i think they might have stunned about my deepness about the […]

Read more โ†’