Posts

Showing posts from June, 2019

Top C# Technical Questions

Collated by:             Muthukumar S Last Updated On:  26 March 2019 Explore the Top Microsoft SQLServer Technical/ Interview Questions here:   http://XploreSqlServer.blogspot.com/ Explore the Top Microsoft Blazor Technical/ Interview Questions here:   https://XploreBlazor.blogspot.com/ Types What is Value Type and Reference type?   (Beginner) A value type stores its value within its own memory allocation (at stack). The following types are value types:  all primitive types like int, float, date, char, bool etc enum  struct  A reference type stores a reference/ pointer to another memory location (in heap) that holds the data. The following types are reference types:  string array class  delegate object What is immutable type?   (Beginner)             Immutable types are the types that once initialized through the construct...