• Home
  • Projects
  • Resume
  • Paintings
  • Blogs
imcodebased
Stay hungry Stay foolish
Category: OOPS

Important Links

  • vDreamLIFE
  • SOSMATE APP
 

Menu

Skip to content
  • Home
  • Projects
  • Resume
  • Paintings
  • Blogs

POPULAR POSTS

  • Node.JS: Error Cannot find module [SOLVED] 22 views | posted on June 10, 2016
  • Setting HttpContext Response using HttpResponseMessage or Request.CreateResponse in WebApi2 14 views | posted on March 19, 2016
  • npm –save or –save-dev. Which one to use? 3 views | posted on March 30, 2015
  • How can I easily tell what caused the error – DbEntityValidationException ? 2 views | posted on April 3, 2014
  • Note to a Software Developer – Sigma 2: Technology Selection 1 view | posted on August 6, 2014

Recent Posts

  • My take on Dependency Injection in ASP.NET Core April 5, 2019
  • Mixin Pattern (Class?) in C# October 21, 2017
  • Understanding The Boyer-Moore Horspood algorithm using C# code September 17, 2017
  • Prototype in Javascript August 19, 2017
  • Playground – Javascript Object Properties. August 17, 2017
  • Validate JSON response with URLs | Scripting Postman August 6, 2017
  • Hangfire July 26, 2017
  • My first Sketchnotes on “The Sketchnote Handbook” July 9, 2017

Categories

  • About me (8)
  • Architecture (4)
  • Azure (1)
  • Change Management (1)
  • Community (1)
  • Configuration Management (2)
  • Development (28)
    • .NET Core (1)
    • Android (2)
    • Design Patterns (1)
    • JavaScript (2)
  • DOEACC (13)
  • IT (1)
  • ITIL (1)
  • Life Diary (1)
  • Office 365 (1)
  • OOPS (2)
  • Personality Development (8)
  • Poetry (2)
  • Project Management (6)
    • Agile (5)
  • Technical Achievements (5)
  • Tips (7)
    • mac (1)
  • Tools (6)
  • Uncategorized (20)

Recent Tweets

Tweets by imcodebased

Downloads

  • RESUME
Powered by Verbosa & WordPress.

Category: OOPS

Mixin Pattern (Class?) in C#

Amit Malhotra October 21, 2017 Design Patterns / Development / OOPS

Mixin class is not a pattern because mixin is really not a pattern. It is, rather, a peculiar way in which class inheritance can be accomplished. The famous design patterns book defines mixin class in its opening chapter using these words: A mixin class is a class that is intended …

Continue reading

Should we go with Delegate or Interface?

Amit Malhotra June 1, 2014 OOPS / Uncategorized

Delegate and Interface can provide you a a great mechanism that will separate the definition from the declaration. Before we go into the detail about when to use what, let us first understand what is delegate (C/C++ pointers) and what is interface. What is Delegate? A delegate is a pointer …

Continue reading
Top