Thursday, October 30, 2014

3Pillar Open Source Meetup

3Pillar Open Source Meetup Hi Folks, There is an open source meet up in our organization. Please reach our office on November 14,friday to find out more about SocialAuth and Amazon Web services.     Please touch base with me for this event on given below number. 9911635975 Warm Regards Sachin Kalia...

Tuesday, October 28, 2014

Func Delegate Using Lambda Expression in C#

Func Delegate Using Lambda Expression in C# In this article I'll try to explain a cool feature introduced with .NET 3.5. Known as Func, also named by some developer as a readymade delegate.Func encapsulates a method with two parameters and returns a value of the type specified by the TResult parameter. It has a few overloaded methods as depicted...

Wednesday, October 15, 2014

Life Cycle of TempData in MVC4

Life Cycle of TempData in MVC4       The idea behind to write this article came from after looking at the “such” image on many web portal as depicted below.   I have referred an image from one of dotnet community website. Point1.   If you notice above shown image I sense some wrongdoings with this because it shows that...

Friday, October 10, 2014

Shed Lights on Façade pattern : Just an Interface

Shed Lights on Façade pattern : Just an Interface Façade means “The face or front”. Facade pattern works in a similar manner as its name means. A definition as given below reference from dofactory. Ø Provide a unified interface to a set of interfaces in a subsystem. Façade defines a higher-level interface that makes the subsystem easier to use Ø...

Monday, October 6, 2014

Shed Some Light On Decorator Pattern in C#

Decorator Pattern in C# Pattern"Design Patterns are general, repeatable solutions to common recurring problems in software development." A "pattern" has been defined as "an idea that has been useful in one practical context and will probably be useful in others".A design pattern is not a finished design that can be transformed directly into code....