Tag: c#
Design Patterns – Adapter
Hi guys! Today I’ll talk about the Adapter Pattern. The adapter pattern is a Structural Design Pattern that allows […]
Read More →Select the C# Language Version
Hi guys, today I’m writing about a little bit tip to select a specific C# version.You just imagine that […]
Read More →Design Patterns – Prototype
Hi guys! Today I talk about Prototype Design Pattern! This is a Creational pattern. Objective Clone/Copy an existing object […]
Read More →Design Patterns – Abstract Factory
Hi guys, today I talk about the Abstract Factory Design Pattern. This is a Creational Design Pattern and whose […]
Read More →Design Patterns – Factory Method
Hi guys! Today, I talk about the Factory Method Design Pattern. Factory method is a creational design pattern its […]
Read More →Design Patterns – State
State is a behaviour pattern. We need to look this pattern when: We have a object that changes its […]
Read More →Design Patterns – Singleton
Singleton is a creational design pattern. Idea: We want to have some classes that should have EXACTLY ONE INSTANCE. […]
Read More →Create a Custom Configuration Sections in configs
Hi everyone! Today I want to talk you about Custom Configuration Section in app.configs or web.configs. Our business situation:We […]
Read More →Reflection: Get Type by string & instance class from another assembly
Hi everyone! Today I talk you about reflection and create instance by type.Business scenario: We have a dll called: […]
Read More →c# Datetime Examples
Datetime Class in c# is very useful. Now, we try to do many examples. Let’s begin! What does Datetime.now […]
Read More →